mirror of
https://github.com/sstent/AICyclingCoach.git
synced 2026-01-25 16:41:58 +00:00
15 lines
338 B
JavaScript
15 lines
338 B
JavaScript
module.exports = {
|
|
collectCoverage: true,
|
|
coverageDirectory: "coverage",
|
|
coverageReporters: ["text", "lcov"],
|
|
coveragePathIgnorePatterns: [
|
|
"/node_modules/",
|
|
"/.next/",
|
|
"/__tests__/",
|
|
"jest.config.js"
|
|
],
|
|
testEnvironment: "jest-environment-jsdom",
|
|
moduleNameMapper: {
|
|
"^@/(.*)$": "<rootDir>/src/$1"
|
|
}
|
|
}; |