diff --git a/Gruntfile.js b/Gruntfile.js index 8afa3c7767..0dc8b7fa50 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1111,10 +1111,6 @@ module.exports = function(grunt) { '!tests/qunit/editor/**' ], tasks: ['qunit'] - }, - phpunit: { - files: [ '**/*.php' ], - tasks: [ 'phpunit:default' ] } } }); @@ -1160,6 +1156,13 @@ module.exports = function(grunt) { grunt.task.run( 'build' ); } + if ( 'watch:phpunit' === grunt.cli.tasks[ 0 ] || 'undefined' !== typeof grunt.option( 'phpunit' ) ) { + grunt.config.data._watch.phpunit = { + files: [ '**/*.php' ], + tasks: [ 'phpunit:default' ] + }; + } + grunt.task.run( '_' + this.nameArgs ); } );