Files @ 4d0611e71bfe
Branch filter:

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

Josh Simmons
Merge pull request #31 from northbaypython/josh/copy

add (most) bios, refine news, and more <3 for SFC
/**
 * 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'
      ]
    }));
};