From 250037326569d859e44efcf93412622d1466afc7 Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Thu, 13 Feb 2020 17:02:21 -0800 Subject: [PATCH] test(firefox): unskip passing url hash test --- test/interception.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/interception.spec.js b/test/interception.spec.js index ed8ce6a872..8e3e86b9cd 100644 --- a/test/interception.spec.js +++ b/test/interception.spec.js @@ -274,7 +274,7 @@ module.exports.describe = function({testRunner, expect, defaultBrowserOptions, p expect(text).toBe('
yo
'); 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);