-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
95 lines (84 loc) · 2.66 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
var path = require('path');
module.exports = function(grunt) {
var TEST_RUNNER = path.join(process.cwd(), 'test', 'test_runner');
var ALL_TESTS = 'test/**/*_test.js';
// NPM tasks, alphabetical
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-docco');
grunt.loadNpmTasks('grunt-mocha-test');
grunt.initConfig({
// Clean
clean: {
docs: ['docs'],
coverage: ['test/coverage.html']
},
// Documentation
docco: {
main: {
src: ['lib/**/*.js'],
options: {
output: 'docs/'
}
}
},
// Server-side mocha tests
mochaTest: {
// Runs all tests
test: {
options: {
require: TEST_RUNNER,
reporter: 'spec',
ui: 'bdd',
timeout: 200,
recursive: true,
clearRequireCache: true
},
src: [ALL_TESTS]
},
// Instruments code for reporting test coverage
instrument: {
options: {
require: TEST_RUNNER,
reporter: 'spec',
ui: 'bdd',
timeout: 200,
recursive: true,
},
src: [ALL_TESTS]
},
// Reports test coverage
coverage: {
options: {
require: TEST_RUNNER,
reporter: 'html-cov',
ui: 'bdd',
timeout: 200,
recursive: true,
quiet: true,
captureFile: 'test/coverage.html'
},
src: [ALL_TESTS]
}
},
// Watches filesystem for changes to run tasks automatically
watch: {
test: {
options: {
spawn: false
},
files: [
'lib/**/*.js',
'test/**/*.js'
],
tasks: ['mochaTest:test']
}
}
});
// Runs all unit tests
grunt.registerTask('test', 'All unit tests', ['mochaTest:test']);
// Generates test coverage report
grunt.registerTask('coverage', 'Unit test code coverage', ['clean:coverage', 'mochaTest:instrument', 'mochaTest:coverage']);
// Generates documentation
grunt.registerTask('docs', 'Generate documentation', ['clean:docs', 'docco:main']);
};