fix(@schematics/angular): set restartOnFileChange to true in karma.conf templates

Fix #13542
This commit is contained in:
Luis Confraria 2019-02-08 15:11:47 +00:00 committed by Alex Eagle
parent ec94f42108
commit 1f9c84f98c
2 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,7 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
singleRun: false,
restartOnFileChange: true
});
};

View File

@ -26,6 +26,7 @@ module.exports = function (config) {
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: false
singleRun: false,
restartOnFileChange: true
});
};