summaryrefslogtreecommitdiff
path: root/gulpfile.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-03 13:03:37 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-03 13:03:37 +0900
commitc06f297c478ee0b818ae8ff41e0d2bde18430da3 (patch)
treeef59ff22d3324125a817a791fcd2c45e21a3f9f5 /gulpfile.ts
parentMerge pull request #1379 from akihikodaki/misc (diff)
downloadsharkey-c06f297c478ee0b818ae8ff41e0d2bde18430da3.tar.gz
sharkey-c06f297c478ee0b818ae8ff41e0d2bde18430da3.tar.bz2
sharkey-c06f297c478ee0b818ae8ff41e0d2bde18430da3.zip
Use typescript in tests
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 f372ed2993..fe3b040237 100644
--- a/gulpfile.ts
+++ b/gulpfile.ts
@@ -91,8 +91,8 @@ gulp.src('./src/**/*.ts')
gulp.task('mocha', () =>
gulp.src([])
.pipe(mocha({
- exit: true
- //compilers: 'ts:ts-node/register'
+ exit: true,
+ compilers: 'ts:ts-node/register'
} as any))
);