From dc8664578cd0662948fd38ac5d212e9cd721365e Mon Sep 17 00:00:00 2001 From: Antonella Sgarlatta Date: Fri, 31 Oct 2025 15:41:52 -0300 Subject: [PATCH] chore: fix test (#2954) --- packages/web/jest.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/web/jest.config.js b/packages/web/jest.config.js index a0f4c1e52..1de48c5b9 100644 --- a/packages/web/jest.config.js +++ b/packages/web/jest.config.js @@ -20,8 +20,11 @@ module.exports = { __WEB_VERSION__: '1.0.0', }, transform: { - '^.+\\.(ts|tsx)?$': 'ts-jest', + '^.+\\.(ts|tsx|js|jsx)?$': 'ts-jest', '\\.svg$': 'svg-jest', }, + transformIgnorePatterns: [ + 'node_modules/(?!(react-error-boundary)/)', + ], testEnvironment: 'jsdom', }