UNPKG

passwordless-memorystore

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