From 1eabd182e9f1f4263d14b7bfab38c3f31996d16a Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Thu, 13 Feb 2020 18:22:14 -0800 Subject: [PATCH] test(firefox): unskip passing url hash test (#998) --- 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);