forked from wevm/wagmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
47 lines (46 loc) · 1.03 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
43
44
45
46
47
const config = {
coveragePathIgnorePatterns: ['/node_modules/', '/dist/', '/test/'],
snapshotFormat: {
printBasicPrototype: false,
},
transform: {
'^.+\\.ts(x)?$': [
'@swc-node/jest',
{
jsc: {
minify: false,
},
},
],
},
}
module.exports = {
modulePathIgnorePatterns: ['<rootDir>/docs/', '<rootDir>/examples/'],
coverageProvider: 'v8',
coverageReporters: ['text'],
projects: [
{
...config,
displayName: 'private',
testEnvironment: 'node',
testRegex: 'packages/private/.*\\.test\\.ts$',
},
{
...config,
displayName: 'react',
setupFilesAfterEnv: ['<rootDir>/packages/react/test/setup.ts'],
testEnvironment: 'jsdom',
testRegex: 'packages/react/.*\\.test\\.ts(x)?$',
},
{
...config,
displayName: 'testing',
testEnvironment: 'node',
testRegex: 'packages/testing/.*\\.test\\.ts$',
},
],
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
],
}