Skip to content

Commit

Permalink
fix(test): enable redirect inside sync XHR test (#4805)
Browse files Browse the repository at this point in the history
The underlying bug appears to have been fixed. Test works.
  • Loading branch information
JoelEinbinder authored and aslushnikov committed Aug 5, 2019
1 parent f4f2189 commit f2056a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/requestinterception.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit f2056a8

Please sign in to comment.