From 63f6fa5b35f79d97deca97fb05966f7539055057 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Mino?= Date: Sun, 29 Dec 2024 17:08:34 +0100 Subject: [PATCH] test(generator): exclude test sources from frontend coverage --- .nycrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.nycrc.json b/.nycrc.json index 2e13a11327a..69a8ca56e87 100644 --- a/.nycrc.json +++ b/.nycrc.json @@ -10,6 +10,7 @@ "statements": 100, "exclude": [ "src/main/webapp/app/shared/alert/infrastructure/primary/WindowApplicationListener.ts", - "src/main/webapp/app/module/secondary/RestManagementRepository.ts" + "src/main/webapp/app/module/secondary/RestManagementRepository.ts", + "src/test/**/*" ] }