chore: fix test (#2954)

This commit is contained in:
Antonella Sgarlatta
2025-10-31 15:41:52 -03:00
committed by GitHub
parent 98531e5abf
commit dc8664578c

View File

@@ -20,8 +20,11 @@ module.exports = {
__WEB_VERSION__: '1.0.0', __WEB_VERSION__: '1.0.0',
}, },
transform: { transform: {
'^.+\\.(ts|tsx)?$': 'ts-jest', '^.+\\.(ts|tsx|js|jsx)?$': 'ts-jest',
'\\.svg$': 'svg-jest', '\\.svg$': 'svg-jest',
}, },
transformIgnorePatterns: [
'node_modules/(?!(react-error-boundary)/)',
],
testEnvironment: 'jsdom', testEnvironment: 'jsdom',
} }