diff --git a/.gitignore b/.gitignore index 2edb60a5a6..a2a73bd2c0 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ results wp-config.php wp-tests-config.php phpunit.xml +qunit/tests/compiled.html node_modules npm-debug.log diff --git a/Gruntfile.js b/Gruntfile.js index 4a57ae51d5..12225c64c7 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -333,7 +333,7 @@ module.exports = function(grunt) { }); grunt.registerTask('qunit:compiled', 'Runs QUnit tests on compiled as well as uncompiled scripts.', - ['build', 'copy:qunit', 'qunit', 'clean:qunit']); + ['build', 'copy:qunit', 'qunit']); grunt.registerTask('test', 'Runs all QUnit and PHPUnit tasks.', ['qunit:compiled', 'phpunit']); // Default task.