UNPKG

passwordless-mongostore

Version:
17 lines (14 loc) 255 B
module.exports = function(grunt) { grunt.loadNpmTasks('grunt-mocha-test'); grunt.initConfig({ mochaTest: { test: { options: { reporter: 'spec' }, src: ['test/**/*.js'] } } }); grunt.registerTask('test', ['mochaTest']); };