From 6b6b0dc70530ada7d8a7a3c7e3ff4bdb41d61f85 Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Wed, 30 Jul 2025 10:57:41 -0500 Subject: [PATCH] Update export jest.config as package now of type `commonjs` instead of module --- config/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/jest.config.js b/config/jest.config.js index 5b00a18..d4c4e62 100644 --- a/config/jest.config.js +++ b/config/jest.config.js @@ -25,4 +25,4 @@ const jestConfig = { verbose: true, }; -export default jestConfig; +module.exports = jestConfig;