remix.spec.tsx 975 B

123456789101112131415161718192021222324
  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 './remix';
  5. describe('javascript-remix onboarding docs', function () {
  6. it('renders onboarding docs correctly', () => {
  7. renderWithOnboardingLayout(docs);
  8. // Renders main headings
  9. expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument();
  10. expect(screen.getByRole('heading', {name: 'Configure SDK'})).toBeInTheDocument();
  11. expect(screen.getByRole('heading', {name: 'Next Steps'})).toBeInTheDocument();
  12. // Includes minimum required Astro version
  13. expect(screen.getByText(textWithMarkupMatcher(/Remix 1.0.0/))).toBeInTheDocument();
  14. // Includes wizard command statement
  15. expect(
  16. screen.getByText(textWithMarkupMatcher(/npx @sentry\/wizard@latest -i remix/))
  17. ).toBeInTheDocument();
  18. });
  19. });