-
Notifications
You must be signed in to change notification settings - Fork 359
/
jest.config.js
26 lines (23 loc) · 1.14 KB
/
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
/* eslint-disable-next-line @typescript-eslint/no-var-requires */
const nextJest = require('next/jest');
// See: https://nextjs.org/docs/testing#jest-and-react-testing-library
const createJestConfig = nextJest({
// Provide the path to your Next.js app to load next.config.js and .env files in your test environment
dir: './',
});
// Add any custom config to be passed to Jest
const customJestConfig = {
// add our setup file
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
// add support for alias' to work, since we use baseUrl in tsconfig.json
moduleDirectories: ['node_modules', '<rootDir>/'],
testEnvironment: 'jest-environment-jsdom',
// test any .test file in any `__tests__` directory, ignore cypress .spec files
testMatch: ['**/__tests__/**/*.[jt]s?(x)', '**/?(*.)+test.[jt]s?(x)'],
moduleNameMapper: {
'd3-time-format': '<rootDir>/node_modules/d3-time-format/dist/d3-time-format.min.js',
'd3-time': '<rootDir>/node_modules/d3-time/dist/d3-time.min.js',
},
};
// createJestConfig is exported this way to ensure that next/jest can load the Next.js config which is async
module.exports = createJestConfig(customJestConfig);