@@ -8,15 +8,13 @@ module.exports = function(config) {
8
8
9
9
// frameworks to use
10
10
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
11
- frameworks : [ 'browserify' , 'detectBrowsers' , ' tap'] ,
11
+ frameworks : [ 'browserify' , 'tap' ] ,
12
12
13
13
// list of files / patterns to load in the browser
14
14
files : [ './tests/api/**/*.js' ] ,
15
15
16
16
// list of files / patterns to exclude
17
- exclude : [
18
- './tests/api/state/stateManager.js' , // 4, "# should clear the cache when the state root is set"
19
- ] ,
17
+ exclude : [ ] ,
20
18
21
19
// preprocess matching files before serving them to the browser
22
20
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
@@ -44,21 +42,12 @@ module.exports = function(config) {
44
42
45
43
// start these browsers
46
44
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
47
- browsers : [ 'FirefoxHeadless' ] ,
45
+ browsers : [ 'FirefoxHeadless' , 'ChromeHeadless' ] ,
48
46
49
47
// Continuous Integration mode
50
48
// if true, Karma captures browsers, runs the tests and exits
51
49
singleRun : true ,
52
50
53
- // karma-detect-browsers plugin config
54
- detectBrowsers : {
55
- enabled : true ,
56
- usePhantomJS : false ,
57
- postDetection : function ( availableBrowsers ) {
58
- return [ 'FirefoxHeadless' ]
59
- } ,
60
- } ,
61
-
62
51
// Concurrency level
63
52
// how many browser should be started simultaneous
64
53
concurrency : Infinity ,
0 commit comments