spring.spec.tsx 640 B

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