From a0330b241830266aef8f8d7f64e1daaeabf03ef7 Mon Sep 17 00:00:00 2001 From: Sebastian Gierlinger Date: Wed, 22 Apr 2015 22:39:35 +0200 Subject: [PATCH] Remove task from test-all no issue - listing takes like forever and stalls running the tests during development - grunt test-all only runs tests, make sure to run grunt validate before submitting a PR --- Gruntfile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 8b101e9a1b..0f2eb6171a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -589,7 +589,7 @@ var _ = require('lodash'), // // `grunt validate` is called by `npm test` and is used by Travis. grunt.registerTask('validate', 'Run tests and lint code', - ['init', 'test-all']); + ['init', 'lint', 'test-all']); // ### Test-All // **Main testing task** @@ -600,7 +600,7 @@ var _ = require('lodash'), // details of each of the test suites. // grunt.registerTask('test-all', 'Run tests and lint code', - ['lint', 'test-routes', 'test-module', 'test-unit', 'test-integration', 'shell:ember:test', 'test-functional']); + ['test-routes', 'test-module', 'test-unit', 'test-integration', 'shell:ember:test', 'test-functional']); // ### Lint //