-
Notifications
You must be signed in to change notification settings - Fork 23
/
Gruntfile.js
70 lines (65 loc) · 1.67 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
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
eslint: {
options: {
config: '.eslintrc.json'
},
all: ['tasks/*.js']
},
jasmine_node: {
all: {
options: {
coverage: {
watermarks: {
statements: [90, 95],
lines: [90, 95],
functions: [90, 95],
branches: [90, 95],
},
thresholds: {
statements: 90,
lines: 90,
functions: 90,
branches: 90
},
// Uncomment line below to include
// calculator2.js file in coverage reports
// includeAllSources: true
},
isVerbose: true,
forceExit: true,
jasmine: {
spec_dir: 'spec',
spec_files: [
'*spec.js'
],
reporters: {
spec: {
colors: true
},
junitXml: {
savePath: "reports",
consolidateAll: true
}
// Uncomment line below to activate teamcity reporter
//teamcity: true
}
}
},
src: [
'src/*.js'
]
}
}
});
grunt.loadNpmTasks('grunt-eslint');
grunt.loadTasks('tasks');
grunt.registerTask('default', ['eslint', 'jasmine_node', 'example-task']);
grunt.registerTask('test', ['default']);
grunt.registerTask('example-task',
'An example task to prove that jasmine_node only applies `forceExit` when there is an error',
function() {
grunt.log.ok("Example task complete");
});
};