generator-itworxhub
Version:
Tool to help the front-end developer at ITWORX HUB Team to save his time by scaffolding the repetitive tasks
17 lines (15 loc) • 371 B
JavaScript
var gulp = require('gulp');
var mocha = require('gulp-mocha');
var coveralls = require('gulp-coveralls');
gulp.task('coveralls', function () {
return gulp.src('test/coverage/**/lcov.info')
.pipe(coveralls());
});
gulp.task('test', function () {
return gulp.src(['test/*.test.js'], {
read: false
})
.pipe(mocha({
reporter: 'spec'
}));
});