From 1d0fc459c8c77956499b37d4f96783a04a83d425 Mon Sep 17 00:00:00 2001 From: Jan Scheffler Date: Tue, 14 Sep 2021 18:56:09 +0200 Subject: [PATCH] chore: add comment to explain origin of test (#7398) --- test/requestinterception.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/requestinterception.spec.ts b/test/requestinterception.spec.ts index b2ca3f8b..600e8829 100644 --- a/test/requestinterception.spec.ts +++ b/test/requestinterception.spec.ts @@ -52,6 +52,7 @@ describe('request interception', function () { expect(response.ok()).toBe(true); expect(response.remoteAddress().port).toBe(server.PORT); }); + // @see https://github.com/puppeteer/puppeteer/pull/3105 it('should work when POST is redirected with 302', async () => { const { page, server } = getTestState();