File tree 2 files changed +15
-3
lines changed
2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 103
103
" src/favicon.ico" ,
104
104
" src/assets"
105
105
],
106
+ "stylePreprocessorOptions" : {
107
+ "includePaths" : [
108
+ " src/assets/scss"
109
+ ]
110
+ },
106
111
"styles" : [
107
112
" src/styles.scss"
108
113
],
Original file line number Diff line number Diff line change @@ -10,7 +10,8 @@ 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-devkit/build-angular/plugins/karma' ) ,
14
+ require ( 'karma-mocha-reporter' ) ,
14
15
] ,
15
16
client : {
16
17
jasmine : {
@@ -32,12 +33,18 @@ module.exports = function (config) {
32
33
{ type : 'text-summary' }
33
34
]
34
35
} ,
35
- reporters : [ 'progress' , 'kjhtml '] ,
36
+ reporters : [ 'mocha ' ] ,
36
37
port : 9876 ,
37
38
colors : true ,
38
39
logLevel : config . LOG_INFO ,
39
40
autoWatch : true ,
40
- browsers : [ 'Chrome' ] ,
41
+ browsers : [ 'ChromeHeadless' ] ,
42
+ customLaunchers : {
43
+ ChromeHeadlessCI : {
44
+ base : 'ChromeHeadless' ,
45
+ flags : [ '--no-sandbox' ]
46
+ }
47
+ } ,
41
48
singleRun : false ,
42
49
restartOnFileChange : true
43
50
} ) ;
You can’t perform that action at this time.
0 commit comments