9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
testEnvironment: "node",
|
|
testTimeout: 10 * 60000,
|
|
testPathIgnorePatterns: ["/node_modules/", "/build/"],
|
|
setupFiles: ["./jest.setup.ts"],
|
|
};
|