-
Notifications
You must be signed in to change notification settings - Fork 79
/
gulpfile.js
42 lines (37 loc) · 955 Bytes
/
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
'use strict';
var gulp = require('gulp');
var mocha = require('gulp-mocha');
var jshint = require('gulp-jshint');
var istanbul = require('gulp-istanbul');
gulp.task('test', function() {
return gulp.src(['./tests/**/*.js'], {read: false})
.pipe(mocha({
reporter: 'spec',
bail: true
}));
});
gulp.task('coverage', function(callback) {
gulp.src(['./lib/**/*.js'])
.pipe(istanbul())
.pipe(istanbul.hookRequire())
.on('finish', function() {
gulp.src(['./tests/*.js'], {read: false})
.pipe(mocha({
reporter: 'spec',
bail: true
}))
.pipe(istanbul.writeReports())
.pipe(istanbul.enforceThresholds({thresholds: {global: 90}}))
.on('end', callback);
});
});
gulp.task('lint', function() {
return gulp.src('./lib/**/*.js')
.pipe(jshint())
.pipe(jshint.reporter('unix'));
});
gulp.task('lintTests', function() {
return gulp.src('./tests/**/*.js')
.pipe(jshint())
.pipe(jshint.reporter('unix'));
});