16 lines
455 B
JavaScript
16 lines
455 B
JavaScript
module.exports = {
|
|
moduleFileExtensions: ['testing.js', 'web.js', 'mjs', 'js', 'json'],
|
|
testEnvironment: 'jsdom',
|
|
testPathIgnorePatterns: ['/node_modules/', '/lib/'].filter(Boolean),
|
|
testMatch: ['**/*.web.test.js'],
|
|
transformIgnorePatterns: [
|
|
'__mocks__',
|
|
'/node_modules/(?!perf-deets|absurd-sql)'
|
|
],
|
|
transform: {
|
|
'^.+\\.(js|ts|tsx)?$': '<rootDir>/../../jest-babel-transformer-esm'
|
|
},
|
|
globals: {
|
|
__TESTING__: true
|
|
}
|
|
};
|