From 913fb29353074032391facf36a106f5474e302c5 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 7 Sep 2021 19:42:14 +0200 Subject: [PATCH] test: fix 'should filter favicon and favicon redirects' in har.spec.ts --- tests/har.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/har.spec.ts b/tests/har.spec.ts index 5b8c8bc9e3..8a9dd45ba2 100644 --- a/tests/har.spec.ts +++ b/tests/har.spec.ts @@ -520,7 +520,7 @@ it('should filter favicon and favicon redirects', async ({server, browserName, c // Browsers aggresively cache favicons, so force bust with the // `d` parameter to make iterating on this test more predictable and isolated. - const favicon = `/favicon.ico`; + const favicon = `/no-cache-2/favicon.ico`; const hashedFaviconUrl = `/favicon-hashed.ico`; server.setRedirect(favicon, hashedFaviconUrl); server.setRoute(hashedFaviconUrl, (req, res) => {