UNPKG

370 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
17 // load tasks
18 grunt.loadNpmTasks('grunt-simple-mocha');
19
20 // register tasks
21 grunt.registerTask('test', 'simplemocha');
22};