chore(grunt): grunt-jasmine-node uses different config

This commit is contained in:
Pete Bacon Darwin 2013-10-11 14:56:15 +01:00
parent dd7cb15bcf
commit c317a7b51a

View file

@ -193,8 +193,8 @@ module.exports = function(grunt) {
process: ['build/docs/*.html', 'build/docs/.htaccess']
},
"jasmine-node": {
run: { spec: 'docs/spec' }
"jasmine_node": {
projectRoot: 'docs/spec'
},
"ddescribe-iit": {
@ -256,7 +256,7 @@ module.exports = function(grunt) {
grunt.registerTask('test:docs', 'Run the doc-page tests with Karma', ['package', 'tests:docs']);
grunt.registerTask('test:unit', 'Run unit, jQuery and Karma module tests with Karma', ['tests:jqlite', 'tests:jquery', 'tests:modules']);
grunt.registerTask('test:e2e', 'Run the end to end tests with Karma and keep a test server running in the background', ['connect:testserver', 'tests:end2end']);
grunt.registerTask('test:docgen', ['jasmine-node']);
grunt.registerTask('test:docgen', ['jasmine_node']);
grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter','shell:promises-aplus-tests']);
grunt.registerTask('minify', ['bower','clean', 'build', 'minall']);