12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import {render, screen} from 'sentry-test/reactTestingLibrary';
- import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {ProductSolution} from 'sentry/components/onboarding/productSelection';
- import GettingStartedWithReact, {nextSteps, steps} from './react';
- describe('GettingStartedWithReact', function () {
- it('all products are selected', function () {
- const {container} = render(
- <GettingStartedWithReact
- dsn="test-dsn"
- activeProductSelection={[
- ProductSolution.PERFORMANCE_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ]}
- />
- );
- // Steps
- for (const step of steps()) {
- 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();
- }
- expect(container).toSnapshot();
- });
- it('performance product is not selected', function () {
- render(
- <GettingStartedWithReact
- dsn="test-dsn"
- activeProductSelection={[ProductSolution.SESSION_REPLAY]}
- />
- );
- // Next Steps
- expect(
- screen.getByRole('link', {name: 'Performance Monitoring'})
- ).toBeInTheDocument();
- });
- it('session replay product is not selected', function () {
- render(
- <GettingStartedWithReact
- dsn="test-dsn"
- activeProductSelection={[ProductSolution.PERFORMANCE_MONITORING]}
- />
- );
- // Next Steps
- expect(screen.getByRole('link', {name: 'Session Replay'})).toBeInTheDocument();
- });
- });
|