jest.config.js 255 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 module.exports = { rootDir: "src", transform: { "^.+\\.(j|t)sx?$": "babel-jest", }, moduleNameMapper: { "\\.(css)$": "identity-obj-proxy", }, setupFilesAfterEnv: [ "../node_modules/@testing-library/jest-dom/dist/index.js", ], };