This commit is contained in:
Lucas Tettamanti
2026-01-26 00:13:03 -03:00
parent b1c8a3685c
commit e85afab3e6
6 changed files with 3490 additions and 2 deletions

13
vitest.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['**/*.test.js'],
coverage: {
provider: 'v8',
reporter: ['text', 'html'],
},
},
})