From 44d9502673eedfb52eccc9b4541c5f217a85eee1 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Mon, 4 May 2026 15:51:53 +0000 Subject: [PATCH] chore: exclude auth tests from root vitest Auth package has its own test runner (node --test) configured. Exclude auth directory from root vitest to prevent no-test-suite error. Co-Authored-By: Paperclip --- vitest.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vitest.config.ts b/vitest.config.ts index 30c96d0..d2f29f8 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -7,6 +7,6 @@ export default defineConfig({ environment: 'jsdom', globals: true, setupFiles: ['./src/test/setup.ts'], - exclude: ['e2e/**', 'node_modules/**'], + exclude: ['e2e/**', 'auth/**', 'node_modules/**'], }, })