| const nextJest = require('next/jest') |
|
|
| const createJestConfig = nextJest() |
|
|
| |
| |
| const customJestConfig = { |
| displayName: process.env.TURBOPACK ? 'turbopack' : 'default', |
| testMatch: ['**/*.test.js', '**/*.test.ts', '**/*.test.jsx', '**/*.test.tsx'], |
| setupFilesAfterEnv: ['<rootDir>/jest-setup-after-env.ts'], |
| verbose: true, |
| rootDir: 'test', |
| roots: [ |
| '<rootDir>', |
| '<rootDir>/../packages/next/src/', |
| '<rootDir>/../packages/next-codemod/', |
| '<rootDir>/../packages/eslint-plugin-internal/', |
| '<rootDir>/../packages/font/src/', |
| ], |
| modulePathIgnorePatterns: ['/\\.next/'], |
| modulePaths: ['<rootDir>/lib'], |
| transformIgnorePatterns: ['/next[/\\\\]dist/', '/\\.next/'], |
| moduleNameMapper: { |
| '@next/font/(.*)': '@next/font/$1', |
| }, |
| } |
|
|
| |
| |
| |
| |
| |
| const enableTestReport = !!process.env.NEXT_JUNIT_TEST_REPORT |
|
|
| if (enableTestReport) { |
| if (!customJestConfig.reporters) { |
| customJestConfig.reporters = ['default'] |
| } |
|
|
| let outputDirectory |
| if (process.env.IS_TURBOPACK_TEST) { |
| outputDirectory = '<rootDir>/turbopack-test-junit-report' |
| } else if (process.env.NEXT_RSPACK) { |
| outputDirectory = '<rootDir>/rspack-test-junit-report' |
| } else { |
| outputDirectory = '<rootDir>/test-junit-report' |
| } |
|
|
| customJestConfig.reporters.push([ |
| 'jest-junit', |
| { |
| outputDirectory, |
| reportTestSuiteErrors: 'true', |
| uniqueOutputName: 'true', |
| outputName: 'nextjs-test-junit', |
| addFileAttribute: 'true', |
| }, |
| ]) |
| } |
|
|
| |
| module.exports = createJestConfig(customJestConfig) |
|
|