-
-
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): Convert platform apple-ios to new structure (#58216)
- relates to #56549
- Loading branch information
1 parent
bb51bba
commit 61edc94
Showing
2 changed files
with
174 additions
and
176 deletions.
There are no files selected for viewing
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 './apple-ios'; | ||
|
||
import {GettingStartedWithIos, steps} from './apple-ios'; | ||
describe('apple-ios onboarding docs', function () { | ||
it('renders gradle docs correctly', function () { | ||
renderWithOnboardingLayout(docs); | ||
|
||
describe('GettingStartedWithIos', function () { | ||
it('renders doc correctly', function () { | ||
render(<GettingStartedWithIos 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: 'Experimental Features'}) | ||
).toBeInTheDocument(); | ||
}); | ||
}); |
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