Run smoke test without sandbox for now.

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

View File

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