forked from sequelize/sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.mocharc.jsonc
46 lines (46 loc) · 1018 Bytes
/
.mocharc.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"require": "ts-node/register",
"loader": "ts-node/esm",
"extensions": ["js", "ts"],
"watch-files": ["src"],
"check-leaks": true,
"timeout": 30000,
"reporter": "spec",
"exit": true,
"inline-diffs": true,
"full-trace": true,
// Globals added as per https://github.com/sequelize/sequelize/pull/17206#discussion_r1538541573
"globals": [
"__extends",
"__assign",
"__rest",
"__decorate",
"__param",
"__esDecorate",
"__runInitializers",
"__propKey",
"__setFunctionName",
"__metadata",
"__awaiter",
"__generator",
"__exportStar",
"__createBinding",
"__values",
"__read",
"__spread",
"__spreadArrays",
"__spreadArray",
"__await",
"__asyncGenerator",
"__asyncDelegator",
"__asyncValues",
"__makeTemplateObject",
"__importStar",
"__importDefault",
"__classPrivateFieldGet",
"__classPrivateFieldSet",
"__classPrivateFieldIn",
"__addDisposableResource",
"__disposeResources"
]
}