UNPKG

369 BJavaScriptView Raw
1/* Grunt Task File */
2
3module.exports = function(grunt) {
4 grunt.initConfig({
5 simplemocha: {
6 options: {
7 timeout: 3000,
8 ignoreLeaks: true
9 },
10 all: {
11 src: ['example/test.js']
12 }
13 }
14 });
15
16 // load tasks
17 grunt.loadNpmTasks('grunt-simple-mocha');
18
19 // register tasks
20 grunt.registerTask('test', 'simplemocha');
21};