From aec62f6211bdee1dc7e06db3aa4c2006d8c1068b Mon Sep 17 00:00:00 2001 From: saberzero1 Date: Mon, 9 Mar 2026 03:21:30 +0100 Subject: [PATCH] fix: add passWithNoTests to vitest config --- vitest.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/vitest.config.ts b/vitest.config.ts index d7d0fa2..91100b5 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -4,6 +4,7 @@ export default defineConfig({ test: { environment: "node", include: ["test/**/*.test.ts"], + passWithNoTests: true, reporters: ["default"], }, });