fix: remove headless

This commit is contained in:
1ambda 2017-07-11 20:11:36 +09:00
parent db016a314a
commit efc831c1d4
2 changed files with 2 additions and 4 deletions

View file

@ -28,7 +28,7 @@ cache:
- zeppelin-web/bower_components
addons:
chrome: beta
chrome: stable
apt:
sources:
- r-packages-precise
@ -124,7 +124,6 @@ before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
- ls /usr/bin
script:
- if [[ -n $TEST_MODULES ]]; then export MODULES="${TEST_MODULES}"; fi

View file

@ -22,7 +22,6 @@ var baseConfig = {
// waiting for angular app is loaded
browser.ignoreSynchronization = true;
browser.manage().timeouts().pageLoadTimeout(300000);
browser.manage().timeouts().implicitlyWait(60000);
// add reporter to display executed tests in console
var SpecReporter = require('jasmine-spec-reporter').SpecReporter;
@ -35,7 +34,7 @@ var baseConfig = {
};
var chromeOptions = {
args: ['--headless', '--disable-gpu', '--no-sandbox']
args: ['--disable-gpu', '--no-sandbox']
}
if (process.env.TRAVIS) {