-
Notifications
You must be signed in to change notification settings - Fork 29
Open
Labels
Description
while technically not part of dom-testing-library
it'd be nice to offer the same convenience expectations. Maybe this belongs in jest-puppeteer?
import 'dom-testing-library/extend-expect'
// <span data-testid="greetings">Hello World</span>
expect(queryByTestId(container, 'greetings')).toBeInTheDOM()
expect(queryByTestId(container, 'greetings')).not.toHaveTextContent('Bye bye')
// ...
bradenhs, ilyaulyanov, sebinsua, ondrejvelisek, ysfaran and 2 more