mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
fix(test): enable redirect inside sync XHR test (#4805)
The underlying bug appears to have been fixed. Test works.
This commit is contained in:
parent
f4f21896d2
commit
f2056a8e25
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user