test: goForward is flaky in firefox (#15182)

This commit is contained in:
Yury Semikhatsky 2022-06-28 09:15:54 -07:00 committed by GitHub
parent ae4d7c0c43
commit bcb013d240
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -209,8 +209,9 @@ it('should goBack to redirected navigation', async ({ context, isAndroid, asset,
expect(await page.evaluate(() => location.href)).toBe('https://www.theverge.com/');
});
it('should goForward to redirected navigation', async ({ context, isAndroid, asset, server }) => {
it('should goForward to redirected navigation', async ({ context, isAndroid, asset, server, browserName }) => {
it.fixme(isAndroid);
it.fixme(browserName === 'firefox', 'Flaky in firefox');
const path = asset('har-redirect.har');
await context.routeFromHAR(path, { url: /.*theverge.*/ });