-
Notifications
You must be signed in to change notification settings - Fork 5
/
gulpfile.js
43 lines (39 loc) · 962 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
43
'use strict'
var gulp = require('gulp')
var eslint = require('gulp-eslint')
var isparta = require('isparta')
var istanbul = require('gulp-istanbul')
var mocha = require('gulp-mocha')
var files = {
lint: ['*.js', 'lib/*.js', 'test/*.js'],
src: ['index.js'],
test: ['./test/test.js']
}
gulp.task('lint', function() {
return gulp.src(files.lint)
.pipe(eslint())
.pipe(eslint.format('stylish'))
.pipe(eslint.failAfterError())
})
gulp.task('test', function() {
return gulp.src(files.src)
.pipe(istanbul({
instrumenter: isparta.Instrumenter,
includeUntested: true
}))
.pipe(istanbul.hookRequire())
.on('finish', function() {
gulp.src(files.test, {read: false})
.pipe(mocha({
reporter: 'spec'
}))
.on('error', function(err) {
console.error(err.toString())
this.emit('end')
})
.pipe(istanbul.writeReports({
dir: './coverage',
reporters: ['lcov', 'json', 'text-summary']
}))
})
})