From 37859e51b79b79e31625e8da340d9a91b2e0725b Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Sat, 22 Aug 2015 19:25:34 -0500 Subject: [PATCH] Move gulp task --- tasks/gulp-tests.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/gulp-tests.js b/tasks/gulp-tests.js index c0f90f9d8f..df21ab82d2 100644 --- a/tasks/gulp-tests.js +++ b/tasks/gulp-tests.js @@ -141,9 +141,9 @@ gulp.task('test:api:watch', [ gulp.watch(['website/src/**', 'test/api/**'], ['test:api:clean']); }); -gulp.task('test:karma:watch', ['test:prepare:build'], (cb) => { +gulp.task('test:karma', ['test:prepare:build'], (cb) => { let runner = exec( - testBin('karma start'), + testBin('karma start --single-run'), (err, stdout) => { cb(err); } @@ -151,9 +151,9 @@ gulp.task('test:karma:watch', ['test:prepare:build'], (cb) => { pipe(runner); }); -gulp.task('test:karma', ['test:prepare:build'], (cb) => { +gulp.task('test:karma:watch', ['test:prepare:build'], (cb) => { let runner = exec( - testBin('karma start --single-run'), + testBin('karma start'), (err, stdout) => { cb(err); }