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

10
web/test/smoke.test.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { describe, it, expect } from 'vitest'
import { render, screen } from '@testing-library/react'
import App from '../src/App'
describe('App', () => {
it('renders the app title', () => {
render(<App />)
expect(screen.getByRole('heading', { name: 'record-shop' })).toBeTruthy()
})
})