alerte-secours/app/jest.config.js
devthejo 3e56818c1d chore(to-monorepo): import as-app repo into app
git-subtree-dir: app
git-subtree-mainline: b28b08a80b
git-subtree-split: a6c3dc2641
2026-03-09 08:54:57 +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",
},
};