1
0

feat: react/vite/tailwind web scaffold with jsdom tests

This commit is contained in:
2026-08-29 19:26:10 +02:00
parent 26609d8b62
commit 63e8c5f054
11 changed files with 2395 additions and 7 deletions

6
web/test/setup.ts Normal file
View File

@@ -0,0 +1,6 @@
import { afterEach } from 'vitest'
import { cleanup } from '@testing-library/react'
afterEach(() => {
cleanup()
})