From ce84ef52979569a86b6579e7f4dfbfa8acd5198a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20Beltr=C3=A1n?= Date: Fri, 12 Dec 2025 14:35:14 +0100 Subject: [PATCH] test: include only lib/ in vitest coverage --- vitest.config.mts | 1 + 1 file changed, 1 insertion(+) diff --git a/vitest.config.mts b/vitest.config.mts index 3364d629..599be92c 100644 --- a/vitest.config.mts +++ b/vitest.config.mts @@ -5,6 +5,7 @@ export default defineConfig({ include: ['**/tests/**/*.test.ts'], setupFiles: ['./vitest.setup.mts'], coverage: { + include: ['lib/**'], thresholds: { branches: 90, functions: 90,