From 9da551cce42fa5df071e92123c7bbf9ba9ffddcb Mon Sep 17 00:00:00 2001 From: Gaurav Munjal Date: Sun, 14 Oct 2018 13:58:26 -0400 Subject: [PATCH] try yet another thing --- .travis.yml | 2 +- node-tests/test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0c478a5b..325db146 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ dist: trusty language: node_js node_js: - - "8" + - "6" addons: chrome: stable diff --git a/node-tests/test.js b/node-tests/test.js index 192254f8..8facd418 100644 --- a/node-tests/test.js +++ b/node-tests/test.js @@ -8,7 +8,7 @@ var FAILING_FILE = __dirname + '/../tests/dummy/app/unused.js'; var execSync = require('child_process').execSync; -var chromeVersion = execSync('google-chrome --product-version').toString(); +var chromeVersion = execSync('google-chrome --product-version --no-sandbox --headless --disable-gpu').toString(); var browser = 'Chrome ' + chromeVersion.split('.').slice(0, 2).join('.'); var path = require('path');