From 40ea3e3acb321870a1ec0fcd73efe081f9789326 Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Sun, 26 Apr 2026 21:52:10 +0200 Subject: [PATCH] Include the `web/` folder in the coverage report for `gulp unittestcli` Given that there's a few unit-tests for `web/` code that runs in Node.js, it seems reasonable to include that folder in the coverage report. --- .c8rc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.c8rc.json b/.c8rc.json index 6e2770b2f..1311dc1b7 100644 --- a/.c8rc.json +++ b/.c8rc.json @@ -3,7 +3,8 @@ "include": [ "build/lib-legacy/core/**/*.js", "build/lib-legacy/display/**/*.js", - "build/lib-legacy/shared/**/*.js" + "build/lib-legacy/shared/**/*.js", + "build/lib-legacy/web/**/*.js" ], "exclude": ["build/lib-legacy/test/**"], "all": false,