universal-web-template
Version:
An universal web proejct template - let you quickly set up a project using Handlebars, sass and ReactJS for front-end templating. It can be adopted with most modern CMS.
22 lines (15 loc) • 343 B
JavaScript
/* jshint node: true */
/*
test:run Task
Run unit test scripts
*/
;
var qunit = require('gulp-qunit'),
plumber = require('gulp-plumber');
module.exports = function() {
return this.gulp.src([
this.opts.path.join(this.opts.config.compile.root, '/**/*.html')
])
.pipe(plumber())
.pipe(qunit());
};