You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
407 B
20 lines
407 B
3 years ago
|
module.exports = {
|
||
|
verbose: true,
|
||
|
projects: ['<rootDir>'],
|
||
|
testMatch: [
|
||
|
'**/__tests__/**/*.[jt]s?(x)',
|
||
|
'**/test/**/*.[jt]s?(x)',
|
||
|
'**/?(*.)+(spec|test).[jt]s?(x)',
|
||
|
],
|
||
|
testPathIgnorePatterns: [
|
||
|
'/(?:production_)?node_modules/',
|
||
|
'.d.ts$',
|
||
|
'<rootDir>/test/fixtures',
|
||
|
'<rootDir>/test/helpers',
|
||
|
'__mocks__',
|
||
|
],
|
||
|
transform: {
|
||
|
'^.+\\.[jt]sx?$': 'babel-jest',
|
||
|
},
|
||
|
}
|