test: mark android test as failing (#6575)

This commit is contained in:
Max Schmitt 2021-05-15 16:41:35 +02:00 committed by GitHub
parent c01c5dbb55
commit cff3bd0422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -42,7 +42,8 @@ it('should pass page to close event', async ({page, isAndroid}) => {
expect(closedPage).toBe(page);
});
it('should terminate network waiters', async ({page, server}) => {
it('should terminate network waiters', async ({page, server, isAndroid}) => {
it.fixme(isAndroid);
const results = await Promise.all([
page.waitForRequest(server.EMPTY_PAGE).catch(e => e),
page.waitForResponse(server.EMPTY_PAGE).catch(e => e),