File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ module.exports = function makeWebpackConfig() {
2929 * Should be an empty object if it's generating a test build
3030 * Karma will set this when it's a test build
3131 */
32- config . entry = isTest ? { } : {
32+ config . entry = isTest ? void 0 : {
3333 app : './src/app/app.js'
3434 } ;
3535
@@ -102,7 +102,7 @@ module.exports = function makeWebpackConfig() {
102102 // Reference: https://github.com/webpack/style-loader
103103 // Use style-loader in development.
104104
105- loader : isTest ? 'null' : ExtractTextPlugin . extract ( {
105+ loader : isTest ? 'null-loader ' : ExtractTextPlugin . extract ( {
106106 fallbackLoader : 'style-loader' ,
107107 loader : [
108108 { loader : 'css-loader' , query : { sourceMap : true } } ,
@@ -139,7 +139,7 @@ module.exports = function makeWebpackConfig() {
139139 / n o d e _ m o d u l e s / ,
140140 / \. s p e c \. j s $ /
141141 ] ,
142- loader : 'istanbul-instrumenter' ,
142+ loader : 'istanbul-instrumenter-loader ' ,
143143 query : {
144144 esModules : true
145145 }
You can’t perform that action at this time.
0 commit comments