actual/packages/loot-core/jest.web.config.js
2022-04-28 22:44:38 -04:00

17 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
}
};