summaryrefslogtreecommitdiffstats
path: root/js/gulpfile.js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 15:31:17 +0100
committerBernhard Posselt <dev@bernhard-posselt.com>2016-03-25 19:48:06 +0100
commit0d5c4e438e001ef21dfae69df4ae186b697d2efc (patch)
tree82e00390f6bac6fbcb1bb09479982167b5e792f4 /js/gulpfile.js
parentf7520a8fe7191475668904f5f8c1816df25e2e5a (diff)
add basic basic auth support
Diffstat (limited to 'js/gulpfile.js')
-rw-r--r--js/gulpfile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/gulpfile.js b/js/gulpfile.js
index 44b7776e5..9dece784b 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -77,7 +77,7 @@ gulp.task('watch-karma', (done) => {
});
gulp.task('phpunit', () => {
- gulp.src(phpSources)
+ return gulp.src(phpSources)
.pipe(phpunit('phpunit', {
configurationFile: phpunitConfig
}));