Skip to content

Commit

Permalink
[TMP] debug for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
samccone committed Apr 1, 2018
1 parent 5f24dc8 commit 0762526
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions test/launch-signature-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,9 @@ import * as assert from 'assert';
const log = require('lighthouse-logger');
describe('Launcher', () => {

beforeEach(() => {
log.setLevel('error');
});

afterEach(() => {
log.setLevel('');
});

it('exposes expected interface when launched', async () => {
this.timeout = 3500;
const chrome = await launch();
const chrome = await launch({logLevel: 'verbose'});
assert.notEqual(chrome.process, undefined);
assert.notEqual(chrome.pid, undefined);
assert.notEqual(chrome.port, undefined);
Expand Down

0 comments on commit 0762526

Please sign in to comment.