Permalink
Cannot retrieve contributors at this time
23 lines (20 sloc)
733 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
next.js/jest.config.js /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const nextJest = require('next/jest') | |
const createJestConfig = nextJest() | |
// Any custom config you want to pass to Jest | |
/** @type {import('jest').Config} */ | |
const customJestConfig = { | |
testMatch: ['**/*.test.js', '**/*.test.ts', '**/*.test.tsx'], | |
setupFilesAfterEnv: ['<rootDir>/jest-setup-after-env.ts'], | |
verbose: true, | |
rootDir: 'test', | |
modulePaths: ['<rootDir>/lib'], | |
transformIgnorePatterns: ['/next[/\\\\]dist/', '/\\.next/'], | |
globals: { | |
AbortSignal: global.AbortSignal, | |
}, | |
moduleNameMapper: { | |
'@next/font/(.*)': '@next/font/$1', | |
}, | |
} | |
// createJestConfig is exported in this way to ensure that next/jest can load the Next.js config which is async | |
module.exports = createJestConfig(customJestConfig) |