UNPKG

galician-character-generator

Version:
20 lines (16 loc) 359 B
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'); };