mirror of
https://github.com/pieartsy/PluralFlux.git
synced 2026-04-17 01:55:27 +10:00
12 lines
328 B
JavaScript
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;
|