chore: enable chrome browser tests on c9.io
This commit is contained in:
parent
8906cdbab8
commit
487c4d23c1
|
@ -59,7 +59,10 @@ module.exports = function(config) {
|
||||||
customLaunchers: {
|
customLaunchers: {
|
||||||
DartiumWithWebPlatform: {
|
DartiumWithWebPlatform: {
|
||||||
base: 'Dartium',
|
base: 'Dartium',
|
||||||
flags: ['--enable-experimental-web-platform-features'] }
|
flags: ['--enable-experimental-web-platform-features'] },
|
||||||
|
ChromeNoSandbox: {
|
||||||
|
base: 'Chrome',
|
||||||
|
flags: ['--no-sandbox'] }
|
||||||
},
|
},
|
||||||
browsers: ['ChromeCanary'],
|
browsers: ['ChromeCanary'],
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
register(System);
|
register(System);
|
||||||
cjs(System);
|
cjs(System);
|
||||||
|
|
||||||
jasmine.DEFAULT_TIMEOUT_INTERVAL = 50;
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 100;
|
||||||
|
|
||||||
// Cancel Karma's synchronous start,
|
// Cancel Karma's synchronous start,
|
||||||
// we will call `__karma__.start()` later, once all the specs are loaded.
|
// we will call `__karma__.start()` later, once all the specs are loaded.
|
||||||
|
|
Loading…
Reference in New Issue