Files
cache/jest.config.ts

22 lines
527 B
TypeScript
Raw Permalink Normal View History

2026-05-20 19:31:39 +00:00
export default {
2026-06-11 16:23:52 +00:00
clearMocks: true,
moduleFileExtensions: ["js", "ts"],
roots: ["<rootDir>/__tests__"],
testEnvironment: "node",
testMatch: ["**/*.test.ts"],
transform: {
"^.+\\.ts$": [
"ts-jest",
{
useESM: true,
diagnostics: {
ignoreCodes: [151002]
}
}
]
},
extensionsToTreatAsEsm: [".ts"],
transformIgnorePatterns: ["node_modules/(?!(@actions)/)"],
verbose: true
};