11 lines
300 B
TypeScript
11 lines
300 B
TypeScript
|
|
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()
|
||
|
|
})
|
||
|
|
})
|