UNPKG

passwordless-redisstore-bcryptjs

Version:

Redis TokenStore for Passwordless (with pure js bcrypt)

19 lines (15 loc) 283 B
module.exports = function(grunt) { grunt.loadNpmTasks('grunt-mocha-test'); grunt.initConfig({ mochaTest: { test: { options: { timeout: 15000, reporter: 'spec' }, src: ['test/**/*.js'] } } }); grunt.registerTask('test', [ 'mochaTest']); };