summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2018-07-25 13:37:40 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2018-07-25 13:37:40 +0900
commit6e39b73f07350b37f8d56ed8512beb756dfa21ef (patch)
tree9bb54ec3515ad20cc2156bb2d25ad53d59aa0687 /gulpfile.ts
parentFix #1975 (diff)
downloadsharkey-6e39b73f07350b37f8d56ed8512beb756dfa21ef.tar.gz
sharkey-6e39b73f07350b37f8d56ed8512beb756dfa21ef.tar.bz2
sharkey-6e39b73f07350b37f8d56ed8512beb756dfa21ef.zip
Fix #1961
Diffstat (limited to 'gulpfile.ts')
-rw-r--r--gulpfile.ts4
1 files 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))
);