galician-character-generator
Version:
Generator for characters with typical-galician names
20 lines (16 loc) • 359 B
JavaScript
module.exports = function(grunt) {
// Add the grunt-mocha-test tasks.
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({
// Configure a mochaTest task
mochaTest: {
test: {
options: {
reporter: 'spec'
},
src: ['test/**/*.js']
}
}
});
grunt.registerTask('default', 'mochaTest');
};