We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d0206f commit c174fb4Copy full SHA for c174fb4
.mocharc.json
@@ -3,5 +3,7 @@
3
"bail": true,
4
"exit": true,
5
"timeout": 20000,
6
- "require": ["ts-node/register/transpile-only"]
7
-}
+ "require": [
+ "ts-node/register"
8
+ ]
9
+}
tsconfig.test.json
@@ -2,7 +2,14 @@
2
"extends": "./tsconfig.json",
"compilerOptions": {
"moduleResolution": "node10",
- "module": "CommonJS"
+ "module": "CommonJS",
+ "strict": false,
},
- "include": ["./test/**/*"]
+ "ts-node": {
+ "transpileOnly": true,
10
+ "logError": true,
11
+ },
12
+ "include": [
13
+ "./test/**/*"
14
15
0 commit comments