fix tests

This commit is contained in:
geoffsee
2025-06-18 15:02:29 -04:00
parent b7f02eb4fb
commit afc46fe2c3
9 changed files with 63 additions and 142 deletions

12
vitest.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
// it is recommended to define a name when using inline configs
environment: 'jsdom',
projects: [
'packages/*',
"packages/cloudflare-workers/*",
]
},
})