diff --git a/jest.config.ts b/jest.config.ts new file mode 100644 index 0000000..6c76308 --- /dev/null +++ b/jest.config.ts @@ -0,0 +1,7 @@ +/** @type {import('ts-jest').JestConfigWithTsJest} */ +module.exports = { + preset: "ts-jest", + testTimeout: 100000, + testEnvironment: "node", + testMatch: ["**/test/**/*.test.ts"], +};