Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Commit

Permalink
allow for local docker testing
Browse files Browse the repository at this point in the history
Signed-off-by: Hans Zandbelt <hans.zandbelt@zmartzone.eu>
  • Loading branch information
zandbelt authored and panva committed Sep 28, 2018
1 parent f232fb4 commit c450cdb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/wrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ const TRAVIS = 'TRAVIS' in process.env && 'CI' in process.env;

before(async function () {
browser = await puppeteer.launch(TRAVIS ? {
ignoreHTTPSErrors: true,
args: ['--no-sandbox'],
} : undefined);
} : {ignoreHTTPSErrors: true});
global.tab = await browser.newPage();
});

Expand Down

0 comments on commit c450cdb

Please sign in to comment.