app.test.tsx (262B)
1 import { App } from './app' 2 import { render, screen } from './utils/test-utils' 3 4 describe('First load tests', () => { 5 it('The Explore page is default', () => { 6 render(<App />) 7 expect(screen.getByText(/Explore/i)).toBeInTheDocument() 8 }) 9 })