From a276ffc7b344afbf92c10f17b224a52315074cf8 Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 5 Jun 2018 19:08:36 +0800 Subject: [PATCH] Run smoke test without sandbox for now. --- test/smoke_test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke_test.js b/test/smoke_test.js index 5d190d13f04..a7f3a71b3c1 100644 --- a/test/smoke_test.js +++ b/test/smoke_test.js @@ -16,7 +16,7 @@ const path = require('path'); const browser = await puppeteer.launch({ // when debugging localy setting headless to "false" can be very helpful headless: false, - args: ["--disable-local-storage"] + args: ["--disable-local-storage", "--no-sandbox"] }); const page = await browser.newPage();