This commit is contained in:
2026-08-08 18:00:34 +02:00
commit 41e307b5c1
28 changed files with 4728 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// About me: Vitest configuration for the extension's unit tests.
// Tests are pure-logic only (no Wine, no Vortex runtime), so the default
// node environment is enough; they live next to the sources as *.test.ts.
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['src/**/*.test.ts'],
environment: 'node',
},
});