Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Created May 11, 2021 12:29
Show Gist options
  • Save bengrunfeld/0f9c5010429b641df3b1159d033f131c to your computer and use it in GitHub Desktop.
Save bengrunfeld/0f9c5010429b641df3b1159d033f131c to your computer and use it in GitHub Desktop.
React Testing Library - findBy
import { render, screen } from '@testing-library/react'
import { App } from './App'
test('Render the App component', () => {
render(<App />)
expect(screen.queryByText('Log In')).toBeNull()
expect(screen.findByText('Log In')).toBeInTheDocument()
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment