Files
PluralFlux/tests/jest.config.js
2026-02-17 17:38:06 -05:00

12 lines
328 B
JavaScript

/** @type {import('jest').Config} */
const config = {
clearMocks: true,
collectCoverage: true,
coverageDirectory: "coverage",
setupFiles: ["<rootDir>/jest.setup.js"], // path to a setup module to configure the testing environment before each test
transform: {},
verbose: true,
};
export default config;