generated from Bside-Team-Four/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
jest.config.js
34 lines (31 loc) · 870 Bytes
/
jest.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const nextJest = require('next/jest');
const createJestConfig = nextJest({
dir: './',
});
/** @type {import('jest').Config} */
const customJestConfig = {
setupFiles: [
// add your setup files..
],
setupFilesAfterEnv: [
'<rootDir>/jest.setup.js',
],
moduleNameMapper: {
'@/(.*)': '<rootDir>/src/$1',
'\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$': '<rootDir>/__mocks__/fileMock.js',
'^.+\\.(svg)$': '<rootDir>/__mocks__/svg.js',
},
testPathIgnorePatterns: [
'node_modules',
'<rootDir>.*/public',
'<rootDir>/.next/',
],
moduleDirectories: ['node_modules', '<rootDir>/'],
testEnvironment: 'jest-environment-jsdom',
};
module.exports = async () => ({
...await createJestConfig(customJestConfig)(),
transformIgnorePatterns: [
// add your transform ignore patterns..
],
});