1
0
Files
record-shop/web/test/smoke.test.tsx

11 lines
300 B
TypeScript
Raw Normal View History

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()
})
})