express.spec.tsx 722 B

1234567891011121314151617181920212223
  1. import {render, screen} from 'sentry-test/reactTestingLibrary';
  2. import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step';
  3. import {GettingStartedWithExpress, steps} from './express';
  4. describe('GettingStartedWithExpress', function () {
  5. it('renders doc correctly', function () {
  6. render(<GettingStartedWithExpress dsn="test-dsn" />);
  7. // Steps
  8. for (const step of steps({
  9. installSnippet: 'test-install-snippet',
  10. importContent: 'test-import-content',
  11. initContent: 'test-init-content',
  12. hasPerformanceMonitoring: true,
  13. })) {
  14. expect(
  15. screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]})
  16. ).toBeInTheDocument();
  17. }
  18. });
  19. });