AI_Diplomacy/ai_animation/vitest.config.ts
Tyler Marques 29bc960fe3
Added some initial tests for the functions present.
Had a resurgence of a bug I was pretty sure I fixed, but it came back.
Adding some tests to make sure we catch it if it comes back again.
2025-05-28 10:38:16 -07:00

8 lines
No EOL
138 B
TypeScript

import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'jsdom',
globals: true,
},
})