updated jest to sort of work with es6

This commit is contained in:
Aster Fialla
2026-02-17 17:38:06 -05:00
parent 35b454bc80
commit ba9552b4aa
5 changed files with 34 additions and 11 deletions

11
tests/jest.config.js Normal file
View File

@@ -0,0 +1,11 @@
/** @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;