-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathGruntfile.js
45 lines (44 loc) · 1.62 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
/* not currently */
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
vows: {
all: {
options: {
// String {spec|json|dot-matrix|xunit|tap}
// defaults to "dot-matrix"
reporter: "spec",
// String or RegExp which is
// matched against title to
// restrict which tests to run
onlyRun: /helper/,
// Boolean, defaults to false
verbose: false,
// Boolean, defaults to false
silent: false,
// Colorize reporter output,
// boolean, defaults to true
colors: true,
// Run each test in its own
// vows process, defaults to
// false
isolate: false,
// String {plain|html|json|xml}
// defaults to none
coverage: "json"
},
// String or array of strings
// determining which files to include.
// This option is grunt's "full" file format.
src: ["tests/*.js"
"] // ["
test
/*.js", "spec/*"]
}
}
}
});
grunt.loadNpmTasks("grunt-vows");
};
*/