hydro-fail-fast
Version:
Abort hydro tests on first failure
24 lines (22 loc) • 349 B
JavaScript
/**
* Test config.
*
* @param {Object} hydro
* @api public
*/
module.exports = function(hydro) {
hydro.set({
attach: global,
proxies: {
test: 'addTest'
},
suite: 'hydro-fail-fast',
formatter: 'hydro-simple',
globals: {
assert: require('simple-assert')
},
tests: [
'test/*.js'
]
});
};