forked from shernshiou/node-uber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
48 lines (44 loc) · 1.66 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
47
48
var gulp = require('gulp'),
mocha = require('gulp-mocha'),
istanbul = require('gulp-istanbul'),
eslint = require('gulp-eslint');
gulp.task('lint', function() {
// ESLint ignores files with "node_modules" paths.
// So, it's best to have gulp ignore the directory as well.
// Also, Be sure to return the stream from the task;
// Otherwise, the task may end before the stream has finished.
return gulp.src(['**/*.js', '!node_modules/**', '!coverage/**'])
// eslint() attaches the lint output to the "eslint" property
// of the file object so it can be used by other modules.
.pipe(eslint())
// eslint.format() outputs the lint results to the console.
// Alternatively use eslint.formatEach() (see Docs).
.pipe(eslint.format())
// To have the process exit with an error code (1) on
// lint error, return the stream and pipe to failAfterError last.
.pipe(eslint.failAfterError());
});
gulp.task('pre-test', function() {
return gulp.src(['lib/**/*.js'])
// Covering files
.pipe(istanbul({
includeUntested: true
}))
// Force `require` to return covered files
.pipe(istanbul.hookRequire());
});
gulp.task('test', function() {
return gulp.src(['test/**/*.js'])
.pipe(mocha({
reporter: 'spec'
}))
// Creating the reports after tests ran
.pipe(istanbul.writeReports())
// Enforce a coverage of at least 90%
.pipe(istanbul.enforceThresholds({
thresholds: {
global: 95
}
}));
});
gulp.task('default', ['lint', 'pre-test', 'test']);