From a20cbff15582b0447c82d95fa0237248c4263e59 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Thu, 26 Jun 2025 18:43:03 +0200 Subject: ignore DOM --- jest.config.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/jest.config.js b/jest.config.js index b7462c4..27f3feb 100644 --- a/jest.config.js +++ b/jest.config.js @@ -26,9 +26,11 @@ module.exports = { coverageDirectory: "coverage", // An array of regexp pattern strings used to skip coverage collection - // coveragePathIgnorePatterns: [ - // "\\\\node_modules\\\\" - // ], + coveragePathIgnorePatterns: [ + "/build/", + "/node_modules/", + "/webAO/dom/" + ], // Indicates which provider should be used to instrument code for coverage coverageProvider: "babel", -- cgit