From 75e1941a279186277e47e66b922a1c333fc85efc Mon Sep 17 00:00:00 2001 From: Stanley Lim Date: Fri, 26 Jan 2024 16:26:29 -0500 Subject: [PATCH] :wrench: chore(jest.config.js): Fix Jest config syntax --- jest.config.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jest.config.js b/jest.config.js index 16643958..880919f7 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,4 @@ -const config = { +export default { setupFilesAfterEnv: ['./tests/scss.spec.js'], testEnvironment: 'jest-environment-node-single-context', }; -module.exports = config;