test: skip 'should work with lazy loading iframes' on Android

This commit is contained in:
Max Schmitt 2021-08-25 14:27:44 +02:00
parent 061b5c67f2
commit 6c8c18dc73

View file

@ -476,8 +476,9 @@ it('should fail when canceled by another navigation', async ({page, server}) =>
expect(error.message).toBeTruthy(); 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(isElectron);
it.fixme(isAndroid);
await page.goto(server.PREFIX + '/frames/lazy-frame.html'); await page.goto(server.PREFIX + '/frames/lazy-frame.html');
expect(page.frames().length).toBe(2); expect(page.frames().length).toBe(2);