chore(test): remove stray console.log (#3943)

This commit is contained in:
Andrey Lushnikov 2019-02-07 08:14:05 -08:00 committed by GitHub
parent 609e763381
commit 76eecde823
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,6 @@ module.exports.addTests = function({testRunner, expect, Errors, CHROME}) {
let error = null;
await page.goto(server.EMPTY_PAGE).catch(e => error = e);
expect(error).not.toBe(null);
console.log(error.message);
if (CHROME)
expect(error.message).toContain('net::ERR_ABORTED');
else