From 656c2ef173f8105d4f550c180fa7addb6d0c05af Mon Sep 17 00:00:00 2001 From: Toru Kobayashi Date: Wed, 5 Aug 2015 19:00:23 +0900 Subject: [PATCH] Remove fasttest task. fasttest is not fast --- Gruntfile.js | 3 --- README.md | 2 -- 2 files changed, 5 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 52f55e91b0..e3edee9c73 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -108,9 +108,6 @@ module.exports = function(grunt) { 'npm-react:release', ]); - grunt.registerTask('fasttest', function() { - grunt.task.run('test'); - }); grunt.registerTask('test', ['jest']); grunt.registerTask('npm:test', ['build', 'npm:pack']); diff --git a/README.md b/README.md index ef55244d26..7c2c46c65d 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,6 @@ We use grunt to automate many tasks. Run `grunt -h` to see a mostly complete lis grunt test # Build and run tests in your browser grunt test --debug -# For speed, you can use fasttest and add --filter to only run one test -grunt fasttest --filter=ReactIdentity # Lint the code with ESLint grunt lint # Wipe out build directory