test(har): suppress route after failure on android & electron

This commit is contained in:
Pavel Feldman 2022-06-21 09:15:43 -07:00
parent 6b1bd6ec16
commit 3fa5d1d8ec

View File

@ -73,7 +73,10 @@ it('should not chain abort', async ({ page, server }) => {
expect(failed).toBeFalsy();
});
it('should fall back after exception', async ({ page, server }) => {
it('should fall back after exception', async ({ page, server, isAndroid, isElectron }) => {
it.fixme(isAndroid);
it.fixme(isElectron);
await page.route('**/empty.html', route => {
route.continue();
});