0a0836e993
Agent-Logs-Url: https://github.com/christianlouis/InboxConverge/sessions/6e25705d-50db-4b0c-969c-1be4cb3f1745 Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
23 lines
517 B
JavaScript
23 lines
517 B
JavaScript
import nextJest from 'next/jest.js';
|
|
|
|
const createJestConfig = nextJest({
|
|
dir: './',
|
|
});
|
|
|
|
const customJestConfig = {
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
moduleNameMapper: {
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
|
},
|
|
testMatch: ['**/*.test.(ts|tsx|js|jsx)', '**/*.test.ts', '**/*.test.tsx'],
|
|
collectCoverageFrom: [
|
|
'src/**/*.{ts,tsx}',
|
|
'!src/**/*.d.ts',
|
|
'!src/**/layout.tsx',
|
|
'!src/**/page.tsx',
|
|
'!src/instrumentation.ts',
|
|
],
|
|
};
|
|
|
|
export default createJestConfig(customJestConfig);
|