-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gruntfile.js
executable file
·58 lines (51 loc) · 1.21 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
/**
*
* ©2018-2019 EdgeVerve Systems Limited (a fully owned Infosys subsidiary),
* Bangalore, India. All Rights Reserved.
*
*/
module.exports = function GruntConfig(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
lint: {
target: [
'common/**/*.js',
'server/**/*.js',
'test/**/*.js'
]
},
clean: {
coverage: {
src: ['coverage/']
},
dist: {
src: ['dist/']
}
},
mocha_istanbul: {
options: {
mochaOptions: ['--exit']
},
coverage: {
src: ['test/bootstrap.js', 'test/scripts/*.js'],
options: {
timeout: 5000,
check: {
lines: 80,
statements: 80,
branches: 70,
functions: 80
},
reportFormats: ['lcov']
}
}
}
});
// Add the grunt-mocha-test tasks.
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-mocha-istanbul');
grunt.loadNpmTasks('grunt-eslint');
grunt.registerTask('all', ['lint', 'clean:coverage', 'mocha_istanbul']);
grunt.registerTask('test-with-coverage', ['clean:coverage', 'mocha_istanbul']);
};