12345678910111213141516171819202122232425 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {GettingStartedWithAwsLambda, steps} from './awslambda';
- describe('GettingStartedWithAwsLambda', function () {
- it('renders doc correctly', function () {
- render(<GettingStartedWithAwsLambda dsn="test-dsn" projectSlug="test-project" />);
- // Steps
- for (const step of steps({
- installSnippet: 'test-install-snippet',
- importContent: 'test-import-content',
- initContent: 'test-init-content',
- sourceMapStep: {
- title: 'Upload Source Maps',
- },
- })) {
- expect(
- screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]})
- ).toBeInTheDocument();
- }
- });
- });
|