/** @type {import('@jest/types').Config.InitialOptions} */ module.exports = { testMatch: ["/src/**/*.test.js"], testPathIgnorePatterns: ["/node_modules/", "/e2e/"], transformIgnorePatterns: [ "node_modules/(?!(@react-native|react-native|expo)/)", ], testEnvironment: "node", moduleNameMapper: { "^~/(.*)$": "/src/$1", }, };