Remove dead and broken code from gulpfile (#5794)

In commit c216c0af76, the task unittestWatch was removed. However, the watch task links to it, when executed with the test flag. As watching the unittest is possible with `gulp unittest --watch`, this code is not needed anymore and thus removed.
This commit is contained in:
Hendrik Röhm 2018-11-01 16:26:20 +01:00 committed by Simon Brunel
parent cb14217c88
commit 820d28907b

View File

@ -233,9 +233,6 @@ function moduleSizesTask() {
}
function watchTask() {
if (util.env.test) {
return gulp.watch('./src/**', ['build', 'unittest', 'unittestWatch']);
}
return gulp.watch('./src/**', ['build']);
}