Revert smoke test accidentally default to non headless mode.

This commit is contained in:
Guo Xiang Tan 2018-06-05 19:21:46 +08:00
parent a276ffc7b3
commit bc7d9c61e6
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ const path = require('path');
(async () => {
const browser = await puppeteer.launch({
// when debugging localy setting headless to "false" can be very helpful
headless: false,
headless: true,
args: ["--disable-local-storage", "--no-sandbox"]
});
const page = await browser.newPage();