-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
42 lines (37 loc) · 1.09 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const { checkAppEnv } = require('./config/config-utils');
const isEnvPreact = checkAppEnv('preact');
console.log(';;isEnvPreact,', isEnvPreact);
let reactAlias = {};
if (isEnvPreact) {
reactAlias = {
react: 'preact/compat',
'react-dom': 'preact/compat',
'react-dom/test-utils': 'preact/test-utils',
'react/jsx-runtime': 'preact/jsx-runtime',
};
}
const testConfigForReact = {
verbose: true,
// roots: ['<rootDir>'],
testEnvironment: 'jsdom',
setupFilesAfterEnv: ['<rootDir>/config/setupTests.js'],
// transformIgnorePatterns: ['^.+\\.js$'],
transform: {
'\\.[jt]sx?$': ['babel-jest'],
'.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$':
'jest-transform-stub',
},
moduleNameMapper: {
'^.+\\.(css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$':
'jest-transform-stub',
// ...reactAlias,
},
// testMatch: [
// '<rootDir>/src/**/*.test.(ts|tsx)',
// '<rootDir>/**/*.test.(ts|tsx)',
// ],
};
const testConfigForPreact = {
preset: 'jest-preset-preact',
};
module.exports = isEnvPreact ? testConfigForPreact : testConfigForReact;