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