while technically not part of `dom-testing-library` it'd be nice to offer the same convenience expectations. Maybe this belongs in [jest-puppeteer](https://github.com/smooth-code/jest-puppeteer)? ```js 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') // ...