-
-
Save consoledotblog/94aca906cb2b34c62e36 to your computer and use it in GitHub Desktop.
Building Applications with TypeScript - Snippet 16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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