From bf4b0c19b0761ac12e61a3289ced1300ed1928fe Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Thu, 29 Jan 2026 15:25:58 -0800 Subject: [PATCH] =?UTF-8?q?chore(run):=20=F0=9F=94=A7=20Update=20Vitest=20?= =?UTF-8?q?config=20to=20modify=20test=20runtime=20behavior,=20including?= =?UTF-8?q?=20environment=20variables=20and=20coverage=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- run/vitest.config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 run/vitest.config.ts diff --git a/run/vitest.config.ts b/run/vitest.config.ts new file mode 100644 index 0000000..dcc8f08 --- /dev/null +++ b/run/vitest.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + include: ['**/*.test.ts'], + exclude: [ + 'utils/deployment-urls.test.ts', // Manual verification script, not vitest + ], + environment: 'node', + globals: false, + }, +});