From 172178d6545a84731c8371ab4e9d81102a1d7a9e Mon Sep 17 00:00:00 2001 From: Jacob Alford Date: Fri, 15 Dec 2023 18:38:22 -0700 Subject: [PATCH] fix: fix coverage reports --- jest.config.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 88f14e2f..a1301d75 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,11 @@ module.exports = { - collectCoverageFrom: ['src/**', '!src/schemata.ts'], + collectCoverageFrom: [ + 'src/**', + '!src/schemata.ts', + '!src/internal/either.ts', + '!src/internal/option.ts', + '!src/internal/task-either.ts', + ], preset: 'ts-jest', testEnvironment: 'node', testMatch: ['/tests/**/*.ts'],