123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- 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 './gatsby';
- describe('javascript-gatsby onboarding docs', function () {
- it('renders onboarding docs correctly', () => {
- 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: 'Upload Source Maps'})).toBeInTheDocument();
- expect(screen.getByRole('heading', {name: 'Verify'})).toBeInTheDocument();
- // Includes import statement
- expect(
- screen.getByText(
- textWithMarkupMatcher(/import \* as Sentry from "@sentry\/gatsby"/)
- )
- ).toBeInTheDocument();
- });
- it('displays sample rates by default', () => {
- renderWithOnboardingLayout(docs, {
- selectedProducts: [
- ProductSolution.ERROR_MONITORING,
- ProductSolution.PERFORMANCE_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ],
- });
- expect(
- screen.queryByText(textWithMarkupMatcher(/tracesSampleRate/))
- ).toBeInTheDocument();
- expect(
- screen.queryByText(textWithMarkupMatcher(/replaysSessionSampleRate/))
- ).toBeInTheDocument();
- expect(
- screen.queryByText(textWithMarkupMatcher(/replaysOnErrorSampleRate/))
- ).toBeInTheDocument();
- });
- it('enables performance setting the tracesSampleRate to 1', () => {
- renderWithOnboardingLayout(docs, {
- selectedProducts: [
- ProductSolution.ERROR_MONITORING,
- ProductSolution.PERFORMANCE_MONITORING,
- ],
- });
- expect(
- screen.getByText(textWithMarkupMatcher(/tracesSampleRate: 1\.0/))
- ).toBeInTheDocument();
- });
- it('enables replay by setting replay samplerates', () => {
- renderWithOnboardingLayout(docs, {
- selectedProducts: [
- ProductSolution.ERROR_MONITORING,
- ProductSolution.SESSION_REPLAY,
- ],
- });
- expect(
- screen.getByText(textWithMarkupMatcher(/replaysSessionSampleRate: 0\.1/))
- ).toBeInTheDocument();
- expect(
- screen.getByText(textWithMarkupMatcher(/replaysOnErrorSampleRate: 1\.0/))
- ).toBeInTheDocument();
- });
- });
|