import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout'; import {screen} from 'sentry-test/reactTestingLibrary'; import {textWithMarkupMatcher} from 'sentry-test/utils'; import {ProductSolution} from 'sentry/components/onboarding/productSelection'; import docs from './rack'; describe('getting started with rack', function () { it('renders errors onboarding docs correctly', function () { renderWithOnboardingLayout(docs); // Renders main headings expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument(); expect(screen.getByRole('heading', {name: 'Configure SDK'})).toBeInTheDocument(); }); it('renders performance onboarding docs correctly', async function () { renderWithOnboardingLayout(docs, { selectedProducts: [ProductSolution.PERFORMANCE_MONITORING], }); expect( await screen.findByText(textWithMarkupMatcher(/config.traces_sample_rate/)) ).toBeInTheDocument(); }); it('renders profiling onboarding docs correctly', async function () { renderWithOnboardingLayout(docs, { selectedProducts: [ ProductSolution.PERFORMANCE_MONITORING, ProductSolution.PROFILING, ], }); expect( await screen.findByText(textWithMarkupMatcher(/config.profiles_sample_rate/)) ).toBeInTheDocument(); expect( await screen.findByText(textWithMarkupMatcher(/Ruby Profiling beta is available/)) ).toBeInTheDocument(); expect( await screen.findByText( textWithMarkupMatcher(/Make sure stackprof is loaded before sentry-ruby/) ) ).toBeInTheDocument(); }); });