From 487c4d23c1dcdc2010661c4ed47852aa3ce2989c Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Wed, 15 Apr 2015 05:14:03 +0000 Subject: [PATCH] chore: enable chrome browser tests on c9.io --- karma-js.conf.js | 5 ++++- test-main.js | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/karma-js.conf.js b/karma-js.conf.js index dedbfda7c4..2f7e07d768 100644 --- a/karma-js.conf.js +++ b/karma-js.conf.js @@ -59,7 +59,10 @@ module.exports = function(config) { customLaunchers: { DartiumWithWebPlatform: { base: 'Dartium', - flags: ['--enable-experimental-web-platform-features'] } + flags: ['--enable-experimental-web-platform-features'] }, + ChromeNoSandbox: { + base: 'Chrome', + flags: ['--no-sandbox'] } }, browsers: ['ChromeCanary'], diff --git a/test-main.js b/test-main.js index 356c5ea443..f1cdcb5ebd 100644 --- a/test-main.js +++ b/test-main.js @@ -3,7 +3,7 @@ register(System); cjs(System); -jasmine.DEFAULT_TIMEOUT_INTERVAL = 50; +jasmine.DEFAULT_TIMEOUT_INTERVAL = 100; // Cancel Karma's synchronous start, // we will call `__karma__.start()` later, once all the specs are loaded.