From e7e3f9e42d47a6282ec3f2e0afce3ff9c50b9358 Mon Sep 17 00:00:00 2001 From: Hamzah Ullah Date: Wed, 25 Sep 2024 13:43:35 -0400 Subject: [PATCH] fix: ignore node_modules path for jest watchman (#606) --- config/jest.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/jest.config.js b/config/jest.config.js index 55f8b6578..83ada357c 100644 --- a/config/jest.config.js +++ b/config/jest.config.js @@ -45,4 +45,7 @@ module.exports = { ], ...tsjPreset.transform, }, + watchPathIgnorePatterns: [ + '/node_modules/', + ], };