Skip to content

Commit

Permalink
fix(@schematics/angular): set restartOnFileChange to true in karma.co…
Browse files Browse the repository at this point in the history
…nf templates

Fix #13542
  • Loading branch information
confraria authored and alexeagle committed Feb 9, 2019
1 parent 419738c commit 6adf719
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -26,6 +26,7 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
singleRun: false,
restartOnFileChange: true
});
};
Expand Up @@ -26,6 +26,7 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
singleRun: false,
restartOnFileChange: true
});
};

0 comments on commit 6adf719

Please sign in to comment.