Skip to content

Instantly share code, notes, and snippets.

@consoledotblog
Forked from Nijhazer/bawts-16.js
Created January 14, 2016 17:16
Show Gist options
  • Save consoledotblog/94aca906cb2b34c62e36 to your computer and use it in GitHub Desktop.
Save consoledotblog/94aca906cb2b34c62e36 to your computer and use it in GitHub Desktop.
Building Applications with TypeScript - Snippet 16
var mocha = require('gulp-mocha');
gulp.task('test:api', ['compile:api'], function() {
return gulp.src('api/unit/test/location/**/*.js', {
read: false
}).pipe(mocha({
reporter: 'spec'
}));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment