1 | /**
|
2 | * @type {import('mocha').MochaOptions}
|
3 | */
|
4 | const config = {
|
5 | require: ["ts-node/register"],
|
6 | "expose-gc": true,
|
7 | "v8-expose-gc": true,
|
8 | exit: true,
|
9 | parallel: true,
|
10 | timeout: 5000,
|
11 | retries: 1,
|
12 | fullTrace: true,
|
13 | bail: false,
|
14 | }
|
15 |
|
16 | module.exports = config
|