mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
10 lines
279 B
TypeScript
10 lines
279 B
TypeScript
/// <reference path="./gulp-mocha.d.ts"/>
|
|
/// <reference path="../gulp/gulp.d.ts"/>
|
|
import * as gulp from "gulp";
|
|
import * as mocha from "gulp-mocha";
|
|
|
|
gulp.task('default', function () {
|
|
return gulp.src('test.js', {read: false})
|
|
.pipe(mocha({reporter: 'nyan'}));
|
|
});
|