1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| module.exports = function(grunt) {
|
| grunt.loadNpmTasks('grunt-contrib-jshint');
| grunt.loadNpmTasks('grunt-mocha-test');
|
| grunt.initConfig({
| pkg: grunt.file.readJSON('package.json'),
| jshint: {
| options: {
| node: true
| },
| main : ["index.js"]
| },
| mochaTest: {
| options: {
| reporter: 'spec'
| },
| src: ['test/*.test.js']
| }
| });
|
| grunt.registerTask('default', ['jshint:main', 'mochaTest']);
| };
|
|