-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGruntfile.js
91 lines (88 loc) · 3.01 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
module.exports = function(grunt) {
"use strict";
grunt.loadNpmTasks("grunt-contrib-jasmine");
grunt.loadNpmTasks("grunt-eslint");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-contrib-connect");
grunt.loadNpmTasks("grunt-coveralls");
grunt.loadNpmTasks("grunt-notify");
grunt.initConfig({
eslint: {
options: {
envs: ["browser", "jasmine"],
globals: ["jQuery"],
rules: {
"global-strict": false,
"no-underscore-dangle": false,
"new-cap": false,
"no-loop-func": false,
"no-undef": false
}
},
target: [
"github-chrome-fullname/*.js",
"test/**/*.js"
]
},
jasmine: {
src: "github-chrome-fullname/**/*.js",
options: {
vendor: [
"node_modules/jasmine-ajax/lib/mock-ajax.js",
"node_modules/jquery/dist/jquery.js",
"node_modules/jasmine-jquery/lib/jasmine-jquery.js"
],
helpers: [
"test/helpers/FetchMock.js"
],
specs: "test/*.js",
polyfills : ["node_modules/es6-promise/dist/es6-promise.js"],
keepRunner: true,
template: require("grunt-template-jasmine-istanbul"),
templateOptions: {
coverage: "temp/coverage/coverage.json",
report: [{
type: "html",
options: {
dir: "temp/coverage"
}
}, {
type: "lcov",
options: {
dir: "temp/lcov"
}
}],
files: [
"github-chrome-fullname/*.js",
"!github-chrome-fullname/index.js"
],
thresholds: {
lines: 100,
statements: 100,
branches: 100,
functions: 100
}
}
}
},
coveralls: {
allTests: {
src: "temp/lcov/lcov.info"
}
},
connect: {
server: {
options: {
port: 8888
}
}
},
watch: {
files: ["github-chrome-fullname/*.js", "test/*.js"],
tasks: ["test"]
}
});
grunt.registerTask("test", ["eslint", "jasmine"]);
grunt.registerTask("testAndUploadCoverage", ["test", "coveralls:allTests"]);
grunt.registerTask("default", ["test", "connect", "watch"]);
};