21 lines
623 B
JavaScript
21 lines
623 B
JavaScript
const nextJest = require('next/jest');
|
|
|
|
const createJestConfig = nextJest({ dir: './' });
|
|
|
|
/** @type {import('jest').Config} */
|
|
const customConfig = {
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
|
|
testMatch: [
|
|
'<rootDir>/src/**/*.{spec,test}.{ts,tsx}',
|
|
'<rootDir>/src/**/__tests__/**/*.{spec,test}.{ts,tsx}',
|
|
],
|
|
testPathIgnorePatterns: ['<rootDir>/node_modules/', '<rootDir>/.next/', '<rootDir>/e2e/'],
|
|
moduleNameMapper: {
|
|
'^@/app/(.*)$': '<rootDir>/app/$1',
|
|
'^@/(.*)$': '<rootDir>/src/$1',
|
|
},
|
|
};
|
|
|
|
module.exports = createJestConfig(customConfig);
|