-
Notifications
You must be signed in to change notification settings - Fork 46
/
Gruntfile.js
37 lines (33 loc) · 853 Bytes
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module.exports = function (grunt) {
// load all grunt tasks
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks)
grunt.initConfig({
mochaTest: {
test: {
options: {
reporter: 'spec',
clearRequireCache: true,
quiet: false
},
src: ['test/**/*.js']
}
},
watch: {
js: {
options: {
spawn: false
},
files: ['Gruntfile.js', 'lib/**/*.js', 'test/**/*.js'],
tasks: ['mochaTest']
}
}
})
var defaultTestSrc = grunt.config('mochaTest.test.src')
grunt.event.on('watch', function (action, filepath) {
grunt.config('mochaTest.test.src', defaultTestSrc)
if (filepath.match('test/')) {
grunt.config('mochaTest.test.src', filepath)
}
})
grunt.registerTask('default', 'mochaTest')
}