From 96fae5407f321eca0046a0eb4d02ac69b387b5a2 Mon Sep 17 00:00:00 2001 From: IanLondon Date: Wed, 8 Jul 2020 10:17:27 -0400 Subject: [PATCH] chore(js): improve jest performance by not watching node_modules --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 309a53f10b3..3a0918eb671 100644 --- a/jest.config.js +++ b/jest.config.js @@ -35,4 +35,5 @@ module.exports = { testPathIgnorePatterns: ['cypress/', '/node_modules/'], coverageReporters: ['lcov', 'text-summary'], snapshotSerializers: ['enzyme-to-json/serializer'], + watchPathIgnorePatterns: ['/node_modules/'], }