1
0

switch to vitest

This commit is contained in:
2024-02-24 20:55:23 +01:00
parent 5aedc0248d
commit 7dce99214d
6 changed files with 1043 additions and 3398 deletions

9
vite.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
environment: 'edge-runtime',
reporters: ['verbose'],
watch: false
}
})