From b8533e409212086d736c32c2bae7a17249d4e323 Mon Sep 17 00:00:00 2001 From: Scott Twiname Date: Wed, 14 Aug 2024 12:00:55 +1200 Subject: [PATCH] Exclude test file in test project --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 4e69eda8c3..4bbaf6e5de 100644 --- a/jest.config.js +++ b/jest.config.js @@ -170,6 +170,7 @@ module.exports = { // An array of regexp pattern strings that are matched against all test paths, matched tests are skipped testPathIgnorePatterns: [ '.*\\.fixtures\\.ts$', + 'packages/cli/test/build/src/test/mappingHandler.test.ts', "/node_modules/" ],