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