1
0

switch to vitest

This commit is contained in:
2024-02-21 18:52:04 +01:00
parent 4c480d5ac7
commit a9e83968b9
7 changed files with 1097 additions and 3298 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',
watch: false,
reporters: ['verbose']
}
})