gobble-mocha
v0.1.0
Published
Mocha testing in a Gobble pipeline
Downloads
2
Maintainers
Readme
gobble-mocha
EXPERIMENTAL! Beware; there be dragons!
Installation
npm install --save-dev gobble-mocha
Example
var src = gobble( 'src' );
var unitTests = gobble([
src.moveTo( 'src' ),
gobble( 'unit-tests' ).moveTo( 'tests' )
])
.observe( 'mocha' );
// build the app
var app = src
.transform( 'rollup', {
entry: 'app.js',
format: 'iife'
});
module.exports = gobble([ unitTests, app ]);