1
0

switch to vitest

This commit is contained in:
2024-02-21 18:52:04 +01:00
parent 54dbbb13a9
commit 2568b4d53c
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']
}
})