-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gulpfile.js
66 lines (56 loc) · 1.76 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
var gulp = require('gulp');
var eslint = require('gulp-eslint');
var babel = require('gulp-babel');
var mocha = require('gulp-mocha');
var del = require('del');
function clean (cb) {
del('lib', cb);
}
function lint () {
return gulp
.src([
'src/**/*.js',
'test/**/*.js',
'Gulpfile.js'
])
.pipe(eslint())
.pipe(eslint.format())
.pipe(eslint.failAfterError());
}
function copyTemplates () {
return gulp
.src('src/templates/*')
.pipe(gulp.dest('lib/templates'));
}
function build () {
return gulp
.src('src/**/*.js')
.pipe(babel())
.pipe(gulp.dest('lib'));
}
function test () {
process.env.TESTCAFE_SMTP_SMTPHOST = 'unit-test-mock';
return gulp
.src('test/test.js')
.pipe(mocha({
ui: 'bdd',
reporter: 'spec',
timeout: typeof v8debug === 'undefined' ? 20000 : Infinity // NOTE: disable timeouts in debug
}));
}
function preview () {
var buildReporterPlugin = require('testcafe').embeddingUtils.buildReporterPlugin;
var pluginFactory = require('./lib');
var reporterTestCalls = require('./test/utils/reporter-test-calls');
var plugin = buildReporterPlugin(pluginFactory);
console.log();
reporterTestCalls.forEach(function (call) {
plugin[call.method].apply(plugin, call.args);
});
process.exit(0);
}
exports.clean = clean;
exports.lint = lint;
exports.test = gulp.series(clean, lint, build, copyTemplates, test);
exports.build = gulp.series(clean, lint, build, copyTemplates);
exports.preview = gulp.series(clean, lint, build, copyTemplates, preview);