-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
46 lines (35 loc) · 1.02 KB
/
gulpfile.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
var gulp = require("gulp");
var eslint = require("gulp-eslint");
var mocha = require("gulp-mocha");
var istanbul = require("gulp-istanbul");
var isparta = require("isparta");
var src = ["src/**/*.js"];
var tests = "test/**/*.js";
gulp.task("coverage", function() {
return gulp.src(src)
.pipe(istanbul({
instrumenter: isparta.Instrumenter
}))
.pipe(istanbul.hookRequire());
});
gulp.task("mocha", function() {
return gulp.src(tests)
.pipe(mocha())
.pipe(istanbul.writeReports())
.pipe(istanbul.enforceThresholds({
thresholds: {
global: 90
}
})).once("error", function() {
});
});
gulp.task("eslint", function() {
return gulp.src(["generators/**/*.js", "gulpfile.js"])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task("test", ["eslint", "coverage", "mocha"]);
gulp.task("default", ["test"], function() {
gulp.watch([src, tests], ["test"]);
});