-
Notifications
You must be signed in to change notification settings - Fork 32
/
Gruntfile.js
47 lines (42 loc) · 1.04 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
/**
*
* ©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'),
clean: {
coverage: {
src: ['coverage/']
},
dist: {
src: ['dist/']
}
},
mocha_istanbul: {
options: {
mochaOptions: ['--exit']
},
coverage: {
src: ['test/test.js', 'test/aggregation-fn-groupby-test.js', 'test/aggregation-fn-having-test.js'],
options: {
timeout: 60000,
check: {
lines: 75,
statements: 75,
branches: 60,
functions: 80
},
reportFormats: ['lcov']
}
}
}
});
// Add the grunt-mocha-test tasks.
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-mocha-istanbul');
grunt.registerTask('test-with-coverage', ['clean:coverage', 'mocha_istanbul']);
};