Files @ 5bf97ad4dfed
Branch filter:

Location: CopyleftConf/copyleftconf-website/gulp/tasks/test.js - annotation

5bf97ad4dfed 301 B application/javascript Show Source Show as Raw Download as Raw
Josh Simmons
properly integrate new TRAVELER pages and update general travel info
/**
 * Dependencies
 */
const gulp  = require('gulp');
const mocha = require('gulp-mocha');

/**
 * Module body / Expose
 */
module.exports = (entry, config) => {
  config = config || {};
  return gulp.src(entry, config)
    .pipe(mocha({
      require: [
        'babel-register'
      ]
    }));
};