-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
82 lines (73 loc) · 2.38 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
'use strict';
const gulp = require('gulp');
const mocha = require('gulp-mocha');
const env = require('gulp-env');
const eslint = require('gulp-eslint');
const istanbul = require('gulp-istanbul');
const shell = require('gulp-shell');
gulp.task('lint-server', function() {
return gulp.src(['src/**/*.js', '!src/public/**/*.js'])
.pipe(eslint({
envs: [ 'es6', 'node' ],
rules: {
'no-unused-vars': [2, {'argsIgnorePattern': 'next'}]
}
}))
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('lint-client', function() {
return gulp.src('src/public/**/*.js')
.pipe(eslint({ envs: [ 'browser', 'jquery' ] }))
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('lint-test', function() {
return gulp.src('test/**/*.js')
.pipe(eslint({ envs: [ 'es6', 'node', 'mocha' ] }))
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('lint-integration-test', function() {
return gulp.src('integration-test/**/*.js')
.pipe(eslint({
envs: [ 'browser', 'phantomjs', 'jquery' ],
rules: { 'no-console': 0 }
}))
.pipe(eslint.format())
.pipe(eslint.failAfterError());
});
gulp.task('instrument', function() {
return gulp.src('src/**/*.js')
.pipe(istanbul())
.pipe(istanbul.hookRequire())
});
gulp.task('test', ['lint-test', 'instrument'], function() {
env({ vars: { NODE_ENV: 'test' } });
return gulp.src('test/**/*.js')
.pipe(mocha())
.pipe(istanbul.writeReports())
.pipe(istanbul.enforceThresholds({
thresholds: {
global: {
statements: 70,
branches: 40
}
}
}));
});
gulp.task('integration-test', ['lint-integration-test', 'test'], (done) => {
const TEST_PORT = 5000;
let server = require('http')
.createServer(require('./src/app.js'))
.listen(TEST_PORT, function() {
gulp.src('integration-test/**/*.js')
.pipe(shell('node node_modules/phantomjs-prebuilt/bin/phantomjs <%=file.path%>', {
env: { 'TEST_PORT': TEST_PORT }
}))
.on('error', () => server.close(done))
.on('end', () => server.close(done))
});
});
gulp.task('lint', ['lint-server', 'lint-client', 'lint-test', 'lint-integration-test']);
gulp.task('default', ['lint', 'test']);