@@ -8,7 +8,8 @@ module.exports = function (config) {
8
8
'karma-mocha' ,
9
9
'karma-chai' ,
10
10
'karma-jquery' ,
11
- 'karma-phantomjs-launcher' ,
11
+ 'karma-chrome-launcher' ,
12
+ 'karma-firefox-launcher' ,
12
13
'karma-html2js-preprocessor' ,
13
14
'karma-sinon' ,
14
15
'karma-fixture' ,
@@ -25,17 +26,17 @@ module.exports = function (config) {
25
26
26
27
preprocessors : {
27
28
'**/*.html' : [ 'html2js' ] ,
28
- '**/*.json' : [ 'json_fixtures' ]
29
+ '**/*.json' : [ 'json_fixtures' ]
29
30
} ,
30
31
31
32
files : [
32
- './node_modules/handlebars/dist/handlebars.min.js' ,
33
- './index.html' ,
34
- './unbxdSearch.js' ,
35
- './app.js' ,
36
- 'mock/*.json' ,
37
- 'test/navigation/*.spec.js' ,
38
- 'test/search/*.spec.js' ,
33
+ './node_modules/handlebars/dist/handlebars.min.js' ,
34
+ './index.html' ,
35
+ './unbxdSearch.js' ,
36
+ './app.js' ,
37
+ 'mock/*.json' ,
38
+ 'test/navigation/*.spec.js' ,
39
+ 'test/search/*.spec.js' ,
39
40
] ,
40
41
41
42
reporters : [ 'spec' ] ,
@@ -47,6 +48,6 @@ module.exports = function (config) {
47
48
// level of logging
48
49
logLevel : config . LOG_INFO ,
49
50
50
- browsers : [ 'PhantomJS ' ]
51
+ browsers : [ 'Chrome' , 'ChromeHeadless' , 'Firefox ']
51
52
} ) ;
52
53
} ;
0 commit comments