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