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
This commit is contained in:
Sebastian Gierlinger 2015-04-22 22:39:35 +02:00
parent f94a6be9dd
commit a0330b2418
1 changed files with 2 additions and 2 deletions

View File

@ -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
//