UNPKG

314 Btext/coffeescriptView Raw
1gulp = require 'gulp'
2watch = require 'gulp-watch'
3coffee = require 'gulp-coffee'
4mocha = require 'gulp-mocha'
5
6gulp.task 'test', ->
7 gulp.src(['test/*.coffee'], read: false)
8 .pipe mocha reporter: 'min'
9
10gulp.task 'watch', ->
11 gulp.watch ['**/*.coffee'], ['test']
12 .on 'error', -> @emit 'end'