12345678910111213141516171819202122232425262728293031323334353637 |
- import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout';
- import {screen} from 'sentry-test/reactTestingLibrary';
- import {textWithMarkupMatcher} from 'sentry-test/utils';
- import docs from './awslambda';
- describe('awslambda onboarding docs', function () {
- it('renders doc correctly', function () {
- renderWithOnboardingLayout(docs);
- // Renders main headings
- expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Configure SDK'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Timeout Warning'})).toBeInTheDocument();
- // Renders install instructions
- expect(
- screen.getByText(textWithMarkupMatcher(/pip install --upgrade sentry-sdk/))
- ).toBeInTheDocument();
- });
- it('renders without performance monitoring', function () {
- renderWithOnboardingLayout(docs, {
- selectedProducts: [],
- });
- // Does not render config option
- expect(
- screen.queryByText(textWithMarkupMatcher(/traces_sample_rate: 1\.0,/))
- ).not.toBeInTheDocument();
- // Does not render config option
- expect(
- screen.queryByText(textWithMarkupMatcher(/profiles_sample_rate: 1\.0,/))
- ).not.toBeInTheDocument();
- });
- });
|