Remove dry run option from test-api task

This commit is contained in:
kiswa 2016-05-02 18:36:42 +00:00
parent ab24b9f461
commit 729f31d66b

View File

@ -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', () => {