10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
|
|
/** @type {import('jest').Config} */
|
||
|
|
module.exports = {
|
||
|
|
preset: "ts-jest",
|
||
|
|
testEnvironment: "node",
|
||
|
|
roots: ["<rootDir>/tests"],
|
||
|
|
testMatch: ["**/*.test.ts"],
|
||
|
|
testPathIgnorePatterns: ["/node_modules/", "/integration/", "/chaos/", "/load/"],
|
||
|
|
moduleFileExtensions: ["ts", "js", "json"],
|
||
|
|
};
|