test(har): suppress route after failure on android & electron
This commit is contained in:
parent
6b1bd6ec16
commit
3fa5d1d8ec
|
|
@ -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();
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue