From bc7d9c61e6ae069555a4bacf95d1f12fcb225d15 Mon Sep 17 00:00:00 2001 From: Guo Xiang Tan Date: Tue, 5 Jun 2018 19:21:46 +0800 Subject: [PATCH] Revert smoke test accidentally default to non headless mode. --- 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 a7f3a71b3c1..3bc3e7559b6 100644 --- a/test/smoke_test.js +++ b/test/smoke_test.js @@ -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();