import { defineConfig } from 'vitest/config'; // Unit tests cover the pure client logic (no Svelte components, no network): the // board replay, the placement state machine, premium/value maps, the FlatBuffers // codec and the i18n catalog. Component/interaction coverage is the Playwright smoke. export default defineConfig({ test: { include: ['src/**/*.test.ts'], environment: 'node', }, });