12 строки
287 B
JavaScript
12 строки
287 B
JavaScript
// jest.config.js
|
|
const nextJest = require('next/jest')
|
|
|
|
const createJestConfig = nextJest({ dir: './' })
|
|
|
|
const customJestConfig = {
|
|
moduleDirectories: ['node_modules', '<rootDir>/'],
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
}
|
|
|
|
module.exports = createJestConfig(customJestConfig)
|