From 729f31d66bf29cc862eb9e76cd6c65d637b8850e Mon Sep 17 00:00:00 2001 From: kiswa Date: Mon, 2 May 2016 18:36:42 +0000 Subject: [PATCH] Remove dry run option from test-api task --- gulpfile.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index a5236e7..b4ead6c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -147,8 +147,7 @@ gulp.task('coverage', ['tsc', 'vendor'], () => { gulp.task('test-api', () => { return gulp.src('PhpUnit.xml') - .pipe(phpunit('./src/api/vendor/phpunit/phpunit/phpunit', - { dryRun: true})); + .pipe(phpunit('./src/api/vendor/phpunit/phpunit/phpunit')); }); gulp.task('test-api-single', () => {