8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testTimeout: 100000,
|
|
testEnvironment: "node",
|
|
testMatch: ["**/test/**/*.test.ts"],
|
|
};
|