test(firefox): unskip passing url hash test (#998)

This commit is contained in:
Dmitry Gozman 2020-02-13 18:22:14 -08:00 committed by GitHub
parent b041ce6219
commit 1eabd182e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -274,7 +274,7 @@ module.exports.describe = function({testRunner, expect, defaultBrowserOptions, p
expect(text).toBe('<div>yo</div>');
expect(requests.length).toBe(0);
});
it.skip(FFOX)('should navigate to URL with hash and and fire requests without hash', async({page, server}) => {
it('should navigate to URL with hash and and fire requests without hash', async({page, server}) => {
const requests = [];
await page.route('**/*', request => {
requests.push(request);