From 937f84cdcc5bb83c146bd6f28fe0080854709198 Mon Sep 17 00:00:00 2001 From: CarlNation Date: Mon, 17 Feb 2025 06:04:09 -0500 Subject: [PATCH] CASH-151 CASH-151 exclude experiment components from code coverage --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 04f474e53..8962dfa67 100644 --- a/jest.config.js +++ b/jest.config.js @@ -28,6 +28,7 @@ module.exports = { "!src/layouts/insurance/*.vue", // Temp test exclusion while in development "!src/layouts/insurance-company/*.vue", // Temp test exclusion while in development "!src/layouts/insurance-company/insurance-company-question/*.vue", // Temp test exclusion while in development + "!src/experiment-components/.vue", // END ], // ! means exclude from coverage. testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"],