2026-04-22 17:11:50 +00:00
|
|
|
/** @type {import('jest').Config} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
preset: "ts-jest",
|
|
|
|
|
testEnvironment: "node",
|
|
|
|
|
roots: ["<rootDir>/tests"],
|
|
|
|
|
testMatch: ["**/*.test.ts"],
|
2026-04-22 20:31:06 +00:00
|
|
|
testPathIgnorePatterns: ["/node_modules/", "/integration/", "/chaos/", "/load/", "/e2e/"],
|
2026-04-22 17:11:50 +00:00
|
|
|
moduleFileExtensions: ["ts", "js", "json"],
|
|
|
|
|
};
|