vitaliiromanenko_popcorn-md/jest.config.js
VitaliiRomanenko f728683083 Fix jest config
2026-06-07 21:14:35 +03:00

9 lines
No EOL
240 B
JavaScript

export default {
preset: "ts-jest",
testEnvironment: "node",
transform: {
'^.+\\.tsx?$': ['ts-jest', { tsconfig: 'tsconfig.jest.json' }]
},
moduleFileExtensions: ["ts", "js", "json"],
testMatch: ["**/tests/**/*.test.ts"],
};