From e125fb6e647f0461f46537c31a13a32dd1408eba Mon Sep 17 00:00:00 2001 From: Gabriel De Los Rios Date: Sun, 18 Jan 2026 17:59:59 -0300 Subject: [PATCH] build: excludes html files from test coverage report --- angular.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angular.json b/angular.json index f701ebf..07c1e9e 100644 --- a/angular.json +++ b/angular.json @@ -86,7 +86,10 @@ } }, "test": { - "builder": "@angular/build:unit-test" + "builder": "@angular/build:unit-test", + "options": { + "coverageExclude": ["**/*.html"] + } } } }