From 57fa29e36bef26cf3d7bfe8b57f61c3a65d13d3e Mon Sep 17 00:00:00 2001 From: Mark Date: Fri, 15 May 2026 17:23:14 +0200 Subject: [PATCH] test(01-02): add vitest.config.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Node-environment test runner (Blob shimmed via undici in Vitest 4+) - Scoped include: tests/**/*.test.ts (production code never picked up) - typecheck disabled — tsc --noEmit runs separately via npm run build - No path aliases (tsconfig.json defines none; relative imports used) Co-Authored-By: Claude Opus 4.7 (1M context) --- vitest.config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 vitest.config.ts diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..ac49635 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,12 @@ +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + test: { + environment: 'node', + include: ['tests/**/*.test.ts'], + reporters: 'dot', + typecheck: { + enabled: false, + }, + }, +});