module.exports = { preset: "ts-jest", testEnvironment: "jsdom", setupFilesAfterEnv: ["@testing-library/jest-dom", "/jest.setup.js"], moduleNameMapper: { "\\.(css|less|scss|sass)$": "identity-obj-proxy", }, testMatch: ["**/__tests__/**/*.test.[jt]s?(x)"], transformIgnorePatterns: ["/node_modules/(?!(axios|date-fns)/)"], };