Skip to content

Commit

Permalink
fix: remove headless
Browse files Browse the repository at this point in the history
  • Loading branch information
1ambda committed Jul 11, 2017
1 parent db016a3 commit efc831c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ cache:
- zeppelin-web/bower_components

addons:
chrome: beta
chrome: stable
apt:
sources:
- r-packages-precise
Expand Down Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions zeppelin-web/protractor.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -35,7 +34,7 @@ var baseConfig = {
};

var chromeOptions = {
args: ['--headless', '--disable-gpu', '--no-sandbox']
args: ['--disable-gpu', '--no-sandbox']
}

if (process.env.TRAVIS) {
Expand Down

0 comments on commit efc831c

Please sign in to comment.