NewsBlur/node/node_modules/wuzzy/Gruntfile.js
2020-06-15 17:12:43 -04:00

22 lines
365 B
JavaScript

var mocha = require('mocha');
module.exports = function (grunt) {
/* add the grunt-mocha-test task */
grunt.loadNpmTasks('grunt-mocha-test');
/* grunt configuration */
grunt.initConfig({
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['tests/*.js']
}
}
});
/* test task */
grunt.registerTask('test', 'mochaTest');
};