Files
PluralFlux-infra/jest.config.js

11 lines
349 B
JavaScript
Raw Normal View History

// jest.config.js
module.exports = {
2026-02-17 17:38:06 -05:00
clearMocks: true,
collectCoverage: true,
coverageDirectory: "coverage",
setupFiles: ["<rootDir>/jest.setup.js"], // path to a setup module to configure the testing environment before each test
verbose: true,
transform: {
"^.+\\.[t|j]sx?$": require.resolve('babel-jest')
},
};