UNPKG

hydro-tdd

Version:
25 lines (21 loc) 355 B
/** * Test config. * * @param {Object} hydro * @api public */ module.exports = function(hydro) { var bdd = require('./index'); hydro.set({ plugins: [bdd], attach: global, formatter: 'hydro-simple', globals: { assert: require('simple-assert') }, tests: [ 'test/*.js' ] }); global.__hydro = hydro; };