as-app/jest.config.js
2026-03-07 07:53:08 +01:00

12 lines
382 B
JavaScript

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