2012-11-02 13:03:09 +08:00
|
|
|
/*
|
|
|
|
* grunt-contrib-jasmine
|
|
|
|
* http://gruntjs.com/
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 GruntJS Team
|
|
|
|
* Licensed under the MIT license.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
module.exports = function(grunt) {
|
|
|
|
grunt.initConfig({
|
|
|
|
jshint: {
|
|
|
|
all: [
|
|
|
|
'Gruntfile.js',
|
2012-11-02 13:03:09 +08:00
|
|
|
'tasks/**/*.js'
|
2012-11-02 13:03:09 +08:00
|
|
|
],
|
|
|
|
options: {
|
|
|
|
jshintrc: '.jshintrc'
|
|
|
|
}
|
|
|
|
},
|
2012-11-02 13:03:09 +08:00
|
|
|
watch: {
|
|
|
|
files: ['test/fixtures/pivotal/**/*.js'],
|
|
|
|
tasks: 'jasmine:pivotal:build'
|
|
|
|
},
|
|
|
|
connect : {
|
2012-11-25 07:38:28 +08:00
|
|
|
test : {
|
|
|
|
port : 8000,
|
|
|
|
base : '.'
|
|
|
|
}
|
2012-11-02 13:03:09 +08:00
|
|
|
},
|
|
|
|
jasmine : {
|
|
|
|
options : {
|
|
|
|
specs : 'test/fixtures/pivotal/spec/*Spec.js',
|
|
|
|
helpers : 'test/fixtures/pivotal/spec/*Helper.js'
|
|
|
|
},
|
|
|
|
pivotal : {
|
|
|
|
src : 'test/fixtures/pivotal/src/**/*.js'
|
|
|
|
},
|
|
|
|
customTemplate : {
|
|
|
|
src : 'test/fixtures/pivotal/src/**/*.js',
|
|
|
|
options : {
|
|
|
|
template : 'test/fixtures/customTemplate/custom.tmpl'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
requirejs : {
|
|
|
|
src : 'test/fixtures/requirejs/src/**/*.js',
|
|
|
|
options : {
|
|
|
|
specs : 'test/fixtures/requirejs/spec/*Spec.js',
|
|
|
|
helpers : 'test/fixtures/requirejs/spec/*Helper.js',
|
2012-11-25 07:38:28 +08:00
|
|
|
host : 'http://127.0.0.1:<%= connect.test.port %>/',
|
2012-11-02 13:03:09 +08:00
|
|
|
template : 'requirejs',
|
|
|
|
templateOptions : {
|
|
|
|
baseUrl : './test/fixtures/requirejs/src/'
|
|
|
|
// requirejs : 'vendor/require-2.1.1.js'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2012-11-02 13:03:09 +08:00
|
|
|
nodeunit: {
|
|
|
|
tasks: ['test/*_test.js']
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
grunt.loadTasks('tasks');
|
|
|
|
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-jshint');
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-nodeunit');
|
2012-11-02 13:03:09 +08:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-connect');
|
2012-11-02 13:03:09 +08:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-internal');
|
2012-11-25 07:38:28 +08:00
|
|
|
grunt.loadNpmTasks('grunt-contrib-watch');
|
2012-11-02 13:03:09 +08:00
|
|
|
|
2012-11-02 13:03:09 +08:00
|
|
|
grunt.registerTask('watch-test', ['connect', 'watch']);
|
|
|
|
|
2012-11-25 07:38:28 +08:00
|
|
|
grunt.registerTask('test', ['jasmine:pivotal', 'jasmine:customTemplate', 'connect', 'jasmine:requirejs']);
|
2012-11-02 13:03:09 +08:00
|
|
|
grunt.registerTask('default', ['jshint', 'test', 'build-contrib']);
|
2012-11-02 13:03:09 +08:00
|
|
|
};
|