express.spec.tsx 818 B

1234567891011121314151617181920212223242526
  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" projectSlug="test-project" />);
  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. sourceMapStep: {
  14. title: 'Upload Source Maps',
  15. },
  16. })) {
  17. expect(
  18. screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]})
  19. ).toBeInTheDocument();
  20. }
  21. });
  22. });