1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {ProductSolution} from 'sentry/components/onboarding/productSelection';
- import {AngularVersion, GettingStartedWithAngular, nextSteps, steps} from './angular';
- describe('GettingStartedWithAngular', function () {
- it('all products are selected', function () {
- render(
- <GettingStartedWithAngular
- dsn="test-dsn"
- projectSlug="test-project"
- activeProductSelection={[
- ProductSolution.PERFORMANCE_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ]}
- />
- );
- // Steps
- for (const step of steps({
- angularVersion: AngularVersion.V12,
- errorHandlerProviders: 'test-error-handler-providers',
- sentryInitContent: 'test-init-content',
- })) {
- expect(
- screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]})
- ).toBeInTheDocument();
- }
- // Next Steps
- const filteredNextStepsLinks = nextSteps.filter(
- nextStep =>
- ![
- ProductSolution.PERFORMANCE_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ].includes(nextStep.id as ProductSolution)
- );
- for (const filteredNextStepsLink of filteredNextStepsLinks) {
- expect(
- screen.getByRole('link', {name: filteredNextStepsLink.name})
- ).toBeInTheDocument();
- }
- });
- });
|