From 6c8c18dc73bedc717b9d2f48690fa78456db975e Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 25 Aug 2021 14:27:44 +0200 Subject: [PATCH] test: skip 'should work with lazy loading iframes' on Android --- tests/page/page-goto.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/page/page-goto.spec.ts b/tests/page/page-goto.spec.ts index 822ffc2fb5..9cca4f2d64 100644 --- a/tests/page/page-goto.spec.ts +++ b/tests/page/page-goto.spec.ts @@ -476,8 +476,9 @@ it('should fail when canceled by another navigation', async ({page, server}) => expect(error.message).toBeTruthy(); }); -it('should work with lazy loading iframes', async ({page, server, isElectron}) => { +it('should work with lazy loading iframes', async ({page, server, isElectron, isAndroid}) => { it.fixme(isElectron); + it.fixme(isAndroid); await page.goto(server.PREFIX + '/frames/lazy-frame.html'); expect(page.frames().length).toBe(2);