From 5ea93fb3d24d8b36a09fb6c8b344f71e9eac1dad Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Mon, 20 Jun 2022 11:00:45 +0530 Subject: [PATCH] Ignore .cache path in jest --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 69abee24c..9930a513e 100644 --- a/jest.config.js +++ b/jest.config.js @@ -10,6 +10,7 @@ module.exports = { ], }, transformIgnorePatterns: ['/node_modules/(?!dagre-d3-renderer/lib|khroma).*\\.js'], + testPathIgnorePatterns: ['/node_modules/', '.cache'], moduleNameMapper: { '\\.(css|scss)$': 'identity-obj-proxy', },