123456789101112131415161718 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {GettingStartedWithAspnetcore, steps} from './aspnetcore';
- describe('GettingStartedWithAspnetcore', function () {
- it('renders doc correctly', function () {
- render(<GettingStartedWithAspnetcore dsn="test-dsn" projectSlug="test-project" />);
- // Steps
- for (const step of steps()) {
- expect(
- screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]})
- ).toBeInTheDocument();
- }
- });
- });
|