test: skip fill tests for android (#11155)

This will drastically speedup our Android bots and free compute faster.
This commit is contained in:
Andrey Lushnikov 2022-01-03 16:02:31 -07:00 committed by GitHub
parent 38801a3b85
commit e8263b8f48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,8 @@
import { test as it, expect } from './pageTest';
it.skip(({ isAndroid }) => isAndroid);
async function giveItAChanceToFill(page) {
for (let i = 0; i < 5; i++)
await page.evaluate(() => new Promise(f => requestAnimationFrame(() => requestAnimationFrame(f))));