From 464cdd5a07bd237a7be1883fc61e2740db0577bd Mon Sep 17 00:00:00 2001 From: Alexander Vakrilov Date: Fri, 2 Feb 2018 09:50:15 +0200 Subject: [PATCH] fix: Fix scroll-view tests for ios 9 and 10 (#5358) --- tests/app/ui/scroll-view/scroll-view-tests.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/app/ui/scroll-view/scroll-view-tests.ts b/tests/app/ui/scroll-view/scroll-view-tests.ts index 8c53f3928..ad2d92149 100644 --- a/tests/app/ui/scroll-view/scroll-view-tests.ts +++ b/tests/app/ui/scroll-view/scroll-view-tests.ts @@ -25,6 +25,8 @@ class ScrollLayoutTest extends UITest { btn.height = { value: 500, unit: "px" }; scrollView.content = btn; + // Use page with scrollableContent disabled for scroll-view tests + (this.testPage).scrollableContent = false; return scrollView; }