// Vitest config for unit-testing the Rhai parser / symbol table / // formatter. Kept separate from vite.config.ts because the dev/build // pipeline doesn't depend on a test runner. // // Tests use explicit `import { describe, it, expect } from 'vitest'` // to keep globals out of the type environment. import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { include: ['src/lib/rhai/**/*.test.ts'], environment: 'node' } });