Files @ da1de53e5a06
Branch filter:

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

Christopher Neugebauer
Merge pull request #62 from northbaypython/copy

credit @sigje for her guidance on childcare, pumping rooms, quiet rooms etc
/**
 * 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'
      ]
    }));
};