From dd0cd223c433722b3eb3ff7c93eec8eec49f76b5 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"], }, });