actual/packages/loot-core/jest.web.config.js

15 lines
413 B
JavaScript
Raw Normal View History

2022-04-29 02:44:38 +00:00
module.exports = {
preset: 'ts-jest/presets/js-with-ts-esm',
2022-05-07 12:33:17 +00:00
moduleFileExtensions: ['testing.js', 'web.js', 'mjs', 'js', 'ts', 'json'],
2022-04-29 02:44:38 +00:00
testEnvironment: 'jsdom',
testPathIgnorePatterns: ['/node_modules/', '/lib/'].filter(Boolean),
testMatch: ['**/*.web.test.js'],
transformIgnorePatterns: [
'__mocks__',
'/node_modules/(?!perf-deets|absurd-sql)'
],
globals: {
__TESTING__: true
}
};