From 6e39b73f07350b37f8d56ed8512beb756dfa21ef Mon Sep 17 00:00:00 2001 From: Aya Morisawa Date: Wed, 25 Jul 2018 13:37:40 +0900 Subject: [PATCH] Fix #1961 --- gulpfile.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.ts b/gulpfile.ts index a27e22e6b7..9145750333 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -90,10 +90,10 @@ gulp.task('format', () => ); gulp.task('mocha', () => - gulp.src([]) + gulp.src('./test/**/*.ts') .pipe(mocha({ exit: true, - compilers: 'ts:ts-node/register' + require: 'ts-node/register' } as any)) );