dart.spec.tsx 1005 B

12345678910111213141516171819202122232425262728
  1. import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout';
  2. import {screen} from 'sentry-test/reactTestingLibrary';
  3. import {textWithMarkupMatcher} from 'sentry-test/utils';
  4. import docs from './dart';
  5. describe('dart onboarding docs', function () {
  6. it('renders docs correctly', async function () {
  7. renderWithOnboardingLayout(docs, {
  8. releaseRegistry: {
  9. 'sentry.dart': {
  10. version: '1.99.9',
  11. },
  12. },
  13. });
  14. // Renders main headings
  15. expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument();
  16. expect(screen.getByRole('heading', {name: 'Configure SDK'})).toBeInTheDocument();
  17. expect(screen.getByRole('heading', {name: 'Verify'})).toBeInTheDocument();
  18. expect(screen.getByRole('heading', {name: 'Performance'})).toBeInTheDocument();
  19. // Renders SDK version from registry
  20. expect(
  21. await screen.findByText(textWithMarkupMatcher(/sentry: \^1\.99\.9/))
  22. ).toBeInTheDocument();
  23. });
  24. });