const nextJest = require("next/jest"); const createJestConfig = nextJest({ dir: "./" }); module.exports = createJestConfig({ testEnvironment: "jest-environment-jsdom", moduleNameMapper: { "^@(components|hooks|mocks|pages|public|tests|utils|theme)(.*)$": "/$1$2" }, testPathIgnorePatterns: [ '/cypress/' ], setupFilesAfterEnv: [ "/tests/setupTests.ts" ] });