1.0.4 • Published 7 years ago

gulp-instant-mocha v1.0.4

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

gulp-instant-mocha

Create mocha html & run mocha test with Phantom.js.

install

from npm

npm install gulp-instant-mocha

from github

git clone git://github.com/fnobi/gulp-instant-mocha.git

usage in gulp

mocha = require 'gulp-instant-mocha'

# test
gulp.task 'test', ->
    gulp.src("#{DEST_JS}/*Test.js")
        .pipe(mocha({
            assertPath: 'node_modules/chai/chai.js'
        }))