repos / starfx

a micro-mvc framework for react apps
git clone https://github.com/neurosnap/starfx.git

starfx / examples / tests-rtl
Jacob Bolda  ·  2025-07-07

jest.config.js

 1export default {
 2  testEnvironment: "jsdom",
 3  transform: {
 4    "^.+\\.(t|j)sx?$": "babel-jest",
 5  },
 6  setupFilesAfterEnv: ["<rootDir>/tests/setup.ts"],
 7  moduleNameMapper: {
 8    "^react$": "<rootDir>/node_modules/react",
 9    "^react-dom$": "<rootDir>/node_modules/react-dom",
10  },
11};