forked from seanworkcode/todo-grad-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
96 lines (91 loc) · 2.9 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
96
module.exports = function(grunt) {
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-jscs");
grunt.loadNpmTasks("grunt-mocha-test");
grunt.loadNpmTasks("grunt-mocha-istanbul");
var testOutputLocation = process.env.CIRCLE_TEST_REPORTS || "test_output";
var artifactsLocation = "build_artifacts";
grunt.initConfig({
jshint: {
all: ["Gruntfile.js", "server.js", "server/**/*.js", "test/**/*.js", "public/**/*.js"],
options: {
jshintrc: true
}
},
jscs: {
all: ["Gruntfile.js", "server.js", "server/**/*.js", "test/**/*.js", "public/**/*.js"]
},
mochaTest: {
test: {
src: ["test/**/*.js"]
},
ci: {
src: ["test/**/*.js"],
options: {
reporter: "xunit",
captureFile: testOutputLocation + "/mocha/results.xml",
quiet: true
}
}
},
"mocha_istanbul": {
test: {
src: ["test/**/*.js"]
},
ci: {
src: ["test/**/*.js"],
options: {
quiet: true
}
},
options: {
coverageFolder: artifactsLocation,
reportFormats: ["none"],
print: "none"
}
},
"istanbul_report": {
test: {
},
options: {
coverageFolder: artifactsLocation
}
},
"istanbul_check_coverage": {
test: {
},
options: {
coverageFolder: artifactsLocation,
check: {
lines: 0,
statements: 0,
branches: 0,
functions: 0
}
}
}
});
grunt.registerMultiTask("istanbul_report", "Solo task for generating a report over multiple files.", function () {
var done = this.async();
var cmd = process.execPath;
var istanbulPath = require.resolve("istanbul/lib/cli");
var options = this.options({
coverageFolder: "coverage"
});
grunt.util.spawn({
cmd: cmd,
args: [istanbulPath, "report", "--dir=" + options.coverageFolder]
}, function(err) {
if (err) {
return done(err);
}
done();
});
});
grunt.registerTask("check", ["jshint", "jscs"]);
grunt.registerTask("test", ["check", "mochaTest:test", "mocha_istanbul:test", "istanbul_report",
"istanbul_check_coverage"]);
grunt.registerTask("ci-test", ["check", "mochaTest:ci", "mocha_istanbul:ci", "istanbul_report",
"istanbul_check_coverage"]);
grunt.registerTask("default", "test");
};