File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ module.exports = function (config) {
10
10
require ( 'karma-chrome-launcher' ) ,
11
11
require ( 'karma-jasmine-html-reporter' ) ,
12
12
require ( 'karma-coverage' ) ,
13
- require ( '@angular-devkit /build-angular/plugins/karma' )
13
+ require ( '@angular/build' ) ,
14
14
] ,
15
15
client : {
16
16
jasmine : {
@@ -21,18 +21,15 @@ module.exports = function (config) {
21
21
} ,
22
22
} ,
23
23
jasmineHtmlReporter : {
24
- suppressAll : true // removes the duplicated traces
24
+ suppressAll : true , // removes the duplicated traces
25
25
} ,
26
26
coverageReporter : {
27
27
dir : require ( 'path' ) . join ( __dirname , './coverage/pres' ) ,
28
28
subdir : '.' ,
29
- reporters : [
30
- { type : 'html' } ,
31
- { type : 'text-summary' }
32
- ]
29
+ reporters : [ { type : 'html' } , { type : 'text-summary' } ] ,
33
30
} ,
34
31
reporters : [ 'progress' , 'kjhtml' ] ,
35
32
browsers : [ 'Chrome' ] ,
36
- restartOnFileChange : true
33
+ restartOnFileChange : true ,
37
34
} ) ;
38
35
} ;
You can’t perform that action at this time.
0 commit comments