fix(firefox): enable more firefox tests (#4007)

This commit is contained in:
Andrey Lushnikov
2019-02-13 23:59:38 -08:00
committed by GitHub
parent e8f044c3be
commit 247733b879
3 changed files with 21 additions and 11 deletions

View File

@@ -61,7 +61,7 @@ module.exports.addTests = function({testRunner, expect, Errors, CHROME}) {
else
expect(error.message).toContain('NS_BINDING_ABORTED');
});
it_fails_ffox('should navigate to empty page with domcontentloaded', async({page, server}) => {
it('should navigate to empty page with domcontentloaded', async({page, server}) => {
const response = await page.goto(server.EMPTY_PAGE, {waitUntil: 'domcontentloaded'});
expect(response.status()).toBe(200);
});