From 40e73f389faa11f129a43a25fe7302b58afeefc9 Mon Sep 17 00:00:00 2001 From: Tom Ratcliffe Date: Thu, 21 Mar 2024 11:54:19 +0000 Subject: [PATCH] Add jest watch plugins for better experience filtering tests --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index ff53e7c3093..604abe7a00e 100644 --- a/jest.config.js +++ b/jest.config.js @@ -55,4 +55,5 @@ module.exports = { }, // Log the test results with dynamic Loki tags. Drone CI only reporters: ['default', ['/public/test/log-reporter.js', { enable: process.env.DRONE === 'true' }]], + watchPlugins: ['jest-watch-typeahead/filename', 'jest-watch-typeahead/testname'], };