gotdailysentiment
Version:
Seminar 16: JavaScript: Sentiment-App_Group5
26 lines (19 loc) • 454 B
JavaScript
module.exports=function (grunt){
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha-cli');
grunt.initConfig({
jshint: {
all: ['*.js', 'db/**/*.js','logic/**/*.js']
},
mochacli: {
options:{
require: ['should'],
reporter: 'spec',
delay: true
},
all: ['test/apiTest.js']
}
});
grunt.registerTask('test',['jshint','mochacli']);
grunt.registerTask('default',['jshint','mochacli']);
};