chore: enable chrome browser tests on c9.io

This commit is contained in:
Misko Hevery 2015-04-15 05:14:03 +00:00
parent 8906cdbab8
commit 487c4d23c1
2 changed files with 5 additions and 2 deletions

View File

@ -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'],

View File

@ -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.