Open
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')
// ...