From c2280b79e6f5a38ddd8c9af2312bd81976eaec62 Mon Sep 17 00:00:00 2001 From: Paul Elliott Date: Fri, 20 Dec 2024 14:45:22 -0500 Subject: [PATCH] Collect coverage from all js and ts files in jest config --- jest.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jest.config.js b/jest.config.js index 9ad0c291..30e6e0eb 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,4 +1,5 @@ module.exports = { + collectCoverageFrom: ['**/*.{js,ts}'], testMatch: ['**/*.test.*'], testPathIgnorePatterns: ['__playwrightTests__/*'], };