Files
2026-08-08 18:00:34 +02:00

12 lines
371 B
TypeScript

// 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',
},
});