forked from Synthetixio/staking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
26 lines (23 loc) · 849 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
const nextJest = require('next/jest');
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 = {
roots: ['<rootDir>'],
modulePaths: ['<rootDir>'],
moduleDirectories: ['node_modules', '<rootDir>/'],
globalSetup: './tests/global.js',
setupFilesAfterEnv: ['<rootDir>/tests/setup.js'],
testEnvironment: 'jest-environment-jsdom',
testMatch: ['<rootDir>/**/*.test.{js,jsx,ts,tsx}'],
collectCoverageFrom: [
'<rootDir>/**/*.{js,jsx,ts,tsx}',
'!<rootDir>/*.{js,jsx,ts,tsx}',
'!<rootDir>/**/*.d.{ts,tsx}',
'!<rootDir>/out/**/*.{js,jsx,ts,tsx}',
'!<rootDir>/.next/**/*.{js,jsx,ts,tsx}',
],
};
module.exports = createJestConfig(customJestConfig);