Skip to content

Commit

Permalink
[core] fixing karma timeout error in travis (vmware-archive#666)
Browse files Browse the repository at this point in the history
Fixes vmware-archive#666.

Signed-off-by: Jeeyun Lim <jeeyun.lim@gmail.com>
  • Loading branch information
jeeyun committed Apr 25, 2017
1 parent d87765d commit 0e0e5c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ sudo: required
dist: trusty

addons:
sauce_connect: true
apt:
sources:
- ubuntu-toolchain-r-test
Expand Down
17 changes: 9 additions & 8 deletions build/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ module.exports = function (config) {
var dist = "dist/";
var src = "src/";

// Browsers to run on Sauce Labs
var customLaunchers = {
"Chrome_without_sandbox": {
base: 'Chrome',
flags: ['--no-sandbox']
}
};

var configuration = {
basePath: '../',

Expand Down Expand Up @@ -85,14 +93,7 @@ module.exports = function (config) {
browsers: ['PhantomJS'],
singleRun: false,
browserNoActivityTimeout: 100000,
captureTimeout: 120000,

customLaunchers: {
Chrome_without_sandbox: {
base: 'Chrome',
flags: ['--no-sandbox']
}
}
captureTimeout: 120000
}

// Only enable for Travis CI
Expand Down

0 comments on commit 0e0e5c1

Please sign in to comment.