1
0

switch to vitest

This commit is contained in:
2024-02-21 18:52:04 +01:00
parent 4c480d5ac7
commit c452594325
6 changed files with 1096 additions and 3297 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']
}
})