-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ref(onboarding-docs): Convert react-native platform (#63084)
- part of #56549
- Loading branch information
1 parent
718b1d1
commit ac63e37
Showing
2 changed files
with
273 additions
and
277 deletions.
There are no files selected for viewing
26 changes: 13 additions & 13 deletions
26
static/app/gettingStartedDocs/react-native/react-native.spec.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import {render, screen} from 'sentry-test/reactTestingLibrary'; | ||
import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout'; | ||
import {screen} from 'sentry-test/reactTestingLibrary'; | ||
|
||
import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step'; | ||
import docs from './react-native'; | ||
|
||
import {GettingStartedWithReactNative, steps} from './react-native'; | ||
describe('GettingStartedWithSpring', function () { | ||
it('renders docs correctly', function () { | ||
renderWithOnboardingLayout(docs); | ||
|
||
describe('GettingStartedWithDjango', function () { | ||
it('renders doc correctly', function () { | ||
render(<GettingStartedWithReactNative dsn="test-dsn" projectSlug="test-project" />); | ||
|
||
// Steps | ||
for (const step of steps()) { | ||
expect( | ||
screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]}) | ||
).toBeInTheDocument(); | ||
} | ||
// Renders main headings | ||
expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument(); | ||
expect(screen.getByRole('heading', {name: 'Configure SDK'})).toBeInTheDocument(); | ||
expect(screen.getByRole('heading', {name: 'Verify'})).toBeInTheDocument(); | ||
expect(screen.getByRole('heading', {name: 'Performance'})).toBeInTheDocument(); | ||
expect(screen.getByRole('heading', {name: 'Debug Symbols'})).toBeInTheDocument(); | ||
expect(screen.getByRole('heading', {name: 'Source Context'})).toBeInTheDocument(); | ||
}); | ||
}); |
Oops, something went wrong.