From 95f331579610fd300bb5f5dd76a2a282731ccd27 Mon Sep 17 00:00:00 2001 From: Ayoub El Khattabi Date: Thu, 6 Dec 2018 11:26:22 +0000 Subject: [PATCH] Fixed typo in folder path The tast test:api:unit:watch should watch the path 'test/api/unit/**/*' instead of the non existent 'test/api/v3/unit/**/*' --- gulp/gulp-tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulp/gulp-tests.js b/gulp/gulp-tests.js index 1d68278a2c..dbeecd8d07 100644 --- a/gulp/gulp-tests.js +++ b/gulp/gulp-tests.js @@ -180,7 +180,7 @@ gulp.task('test:api:unit', (done) => { }); gulp.task('test:api:unit:watch', () => { - return gulp.watch(['website/server/libs/*', 'test/api/v3/unit/**/*', 'website/server/controllers/**/*'], gulp.series('test:api:unit', done => done())); + return gulp.watch(['website/server/libs/*', 'test/api/unit/**/*', 'website/server/controllers/**/*'], gulp.series('test:api:unit', done => done())); }); gulp.task('test:api-v3:integration', (done) => { @@ -254,4 +254,4 @@ gulp.task('test:api-v3', gulp.series( 'test:api:unit', 'test:api-v3:integration', done => done() -)); \ No newline at end of file +));