Skip to content

Instantly share code, notes, and snippets.

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