forked from TanStack/table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jest.config.js
39 lines (39 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
module.exports = {
projects: [
{
displayName: 'table-core',
testEnvironment: 'jsdom',
testMatch: ['<rootDir>/packages/table-core/**/*.test.[jt]s?(x)'],
setupFilesAfterEnv: [
'<rootDir>/packages/table-core/__tests__/jest.setup.js',
],
snapshotFormat: {
printBasicPrototype: false,
},
},
{
displayName: 'react-table',
testEnvironment: 'jsdom',
testMatch: ['<rootDir>/packages/react-table/**/*.test.[jt]s?(x)'],
setupFilesAfterEnv: [
'<rootDir>/packages/react-table/__tests__/jest.setup.js',
],
snapshotFormat: {
printBasicPrototype: false,
},
},
{
displayName: 'react-table-devtools',
testEnvironment: 'jsdom',
testMatch: [
'<rootDir>/packages/react-table-devtools/**/*.test.[jt]s?(x)',
],
setupFilesAfterEnv: [
'<rootDir>/packages/react-table-devtools/__tests__/jest.setup.js',
],
snapshotFormat: {
printBasicPrototype: false,
},
},
],
}