symfony.spec.tsx 631 B

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