UNPKG

arraylist

Version:
20 lines (17 loc) 372 B
module.exports = function(grunt) { grunt.loadNpmTasks('grunt-mocha-test'); // Project configuration. grunt.initConfig({ // Configure a mochaTest task mochaTest: { test: { options: { reporter: 'spec' }, src: [ 'tests/**/*.js' ] } } }); // Run tests // grunt.registerTask('test', [ 'mochaTest' ]); };