forked from Nubescope/sinon-mongoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
50 lines (45 loc) · 1.1 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
49
50
'use strict'
var gulp = require('gulp')
var eslint = require('gulp-eslint')
var excludeGitignore = require('gulp-exclude-gitignore')
var mocha = require('gulp-mocha')
var istanbul = require('gulp-istanbul')
var plumber = require('gulp-plumber')
var isparta = require('isparta')
gulp.task('static', function staticTask() {
return gulp
.src('**/*.js')
.pipe(excludeGitignore())
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError())
})
gulp.task('pre-test', function pretestTask() {
return gulp
.src('lib/**/*.js')
.pipe(
istanbul({
includeUntested: true,
instrumenter: isparta.Instrumenter,
})
)
.pipe(istanbul.hookRequire())
})
gulp.task(
'test',
gulp.series('pre-test', function testTask(cb) {
var mochaErr
gulp
.src('test/**/*.js')
.pipe(plumber())
.pipe(mocha({ reporter: 'spec' }))
.on('error', function(err) {
mochaErr = err
})
.pipe(istanbul.writeReports())
.on('end', function() {
cb(mochaErr)
})
})
)
gulp.task('default', gulp.series('static', 'test'))