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() expect(screen.getByRole('heading', { name: 'record-shop' })).toBeTruthy() }) })