12345678910111213141516171819202122232425262728 |
- import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout';
- import {screen} from 'sentry-test/reactTestingLibrary';
- import {textWithMarkupMatcher} from 'sentry-test/utils';
- import docs from './dart';
- describe('dart onboarding docs', function () {
- it('renders docs correctly', async function () {
- renderWithOnboardingLayout(docs, {
- releaseRegistry: {
- 'sentry.dart': {
- version: '1.99.9',
- },
- },
- });
- // Renders main headings
- expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Configure SDK'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Verify'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Performance'})).toBeInTheDocument();
- // Renders SDK version from registry
- expect(
- await screen.findByText(textWithMarkupMatcher(/sentry: \^1\.99\.9/))
- ).toBeInTheDocument();
- });
- });
|