From 7fee9e35c4cbb8fc56faef2db46610631ae6ea9a Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Wed, 19 Jun 2019 16:41:19 -0400 Subject: [PATCH] fix jest.config.js so `npm run test-watch` works --- jest.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jest.config.js b/jest.config.js index c0f2b6ece0..3d9ab21b8b 100644 --- a/jest.config.js +++ b/jest.config.js @@ -23,5 +23,8 @@ module.exports = { }, transformIgnorePatterns: [ '[/\\\\]node_modules[/\\\\].+\\.(?!(axios)/)(js|jsx)$' + ], + watchPathIgnorePatterns: [ + '/node_modules' ] };