From b8b200b073525588700187298e0f3c24022ed35f Mon Sep 17 00:00:00 2001 From: Yavor Ivanov Date: Fri, 29 Mar 2024 12:59:25 +0200 Subject: [PATCH] refactor: Exclude src/cli.ts from test coverage results --- .nycrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.nycrc b/.nycrc index 4b47da6ce..3b57f7d39 100644 --- a/.nycrc +++ b/.nycrc @@ -2,6 +2,9 @@ "extends": "@istanbuljs/nyc-config-typescript", "reporter": ["lcov", "text", "text-summary"], "include": ["src/**"], + "exclude": [ + "src/cli.ts" + ], "check-coverage": true, "statements": 72, "branches": 61,