From bb4956d3e32b9cf57b9f0a8295146314e11cba40 Mon Sep 17 00:00:00 2001 From: Josh Goldberg Date: Mon, 15 Jul 2024 08:31:12 -0400 Subject: [PATCH] chore: ignore not-a-log for coverage --- vitest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitest.config.ts b/vitest.config.ts index 36fbb03..164b338 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -5,7 +5,7 @@ export default defineConfig({ clearMocks: true, coverage: { all: true, - exclude: ["lib"], + exclude: ["lib", "not-a-log"], include: ["src"], reporter: ["html", "lcov"], },