-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
21 lines (18 loc) · 914 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
// eslint-disable-next-line @typescript-eslint/no-var-requires
const nextJest = require('next/jest')
// Providing the path to your Next.js app which will enable loading next.config.js and .env files
const createJestConfig = nextJest({ dir: './' })
// Any custom config you want to pass to Jest
const customJestConfig = {
testPathIgnorePatterns: ['<rootDir>/cypress/', '<rootDir>/src/config/__tests__/', '<rootDir>/packages'],
moduleNameMapper: {
'^@ecrox/uikit': '<rootDir>/packages/uikit/src',
'^@ecrox/ecroxswap-sdk': '<rootDir>/packages/swap-sdk/dist',
},
moduleDirectories: ['node_modules', 'src'],
testTimeout: 20000,
setupFilesAfterEnv: ['<rootDir>/jest.setup.js'],
testEnvironment: 'jest-environment-jsdom',
}
// createJestConfig is exported in this way to ensure that next/jest can load the Next.js configuration, which is async
module.exports = createJestConfig(customJestConfig)