Skip to content

Commit

Permalink
test: remove debug console.log (#4522)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Jun 4, 2019
1 parent 78d5106 commit 15804d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/requestinterception.spec.js
Expand Up @@ -308,7 +308,7 @@ module.exports.addTests = function({testRunner, expect, CHROME}) {
});
const dataURL = 'data:text/html,<div>yo</div>';
const text = await page.evaluate(url => fetch(url).then(r => r.text()), dataURL);
console.log(text);
expect(text).toBe('<div>yo</div>');
expect(requests.length).toBe(1);
expect(requests[0].url()).toBe(dataURL);
});
Expand Down

0 comments on commit 15804d1

Please sign in to comment.