mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 05:37:34 +03:00
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:
parent
f94a6be9dd
commit
a0330b2418
@ -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
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user