From f2056a8e25b0f84d045a85ef66718e2f4ce7651f Mon Sep 17 00:00:00 2001 From: Joel Einbinder Date: Mon, 5 Aug 2019 15:19:34 -0700 Subject: [PATCH] fix(test): enable redirect inside sync XHR test (#4805) The underlying bug appears to have been fixed. Test works. --- test/requestinterception.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/requestinterception.spec.js b/test/requestinterception.spec.js index ffd777a37f8..5e2a0ed6ec7 100644 --- a/test/requestinterception.spec.js +++ b/test/requestinterception.spec.js @@ -115,7 +115,7 @@ module.exports.addTests = function({testRunner, expect, CHROME}) { expect(response.ok()).toBe(true); }); // @see https://github.com/GoogleChrome/puppeteer/issues/4337 - xit('should work with redirect inside sync XHR', async({page, server}) => { + it('should work with redirect inside sync XHR', async({page, server}) => { await page.goto(server.EMPTY_PAGE); server.setRedirect('/logo.png', '/pptr.png'); await page.setRequestInterception(true);