-
-
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 platforms dotnet aspnetcore & gcpfunctions t…
- Loading branch information
1 parent
763b9f5
commit 37cdb15
Showing
5 changed files
with
346 additions
and
307 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,29 @@ | ||
import {render, screen} from 'sentry-test/reactTestingLibrary'; | ||
import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout'; | ||
import {screen} from 'sentry-test/reactTestingLibrary'; | ||
import {textWithMarkupMatcher} from 'sentry-test/utils'; | ||
|
||
import {StepTitle} from 'sentry/components/onboarding/gettingStartedDoc/step'; | ||
import docs from './awslambda'; | ||
|
||
import {GettingStartedAwsLambda, steps} from './awslambda'; | ||
describe('awslambda onboarding docs', function () { | ||
it('renders docs correctly', async function () { | ||
renderWithOnboardingLayout(docs, { | ||
releaseRegistry: { | ||
'sentry.dotnet.aspnetcore': { | ||
version: '1.99.9', | ||
}, | ||
}, | ||
}); | ||
|
||
describe('GettingStartedAwsLambda', function () { | ||
it('renders doc correctly', function () { | ||
render(<GettingStartedAwsLambda dsn="test-dsn" projectSlug="test-project" />); | ||
// 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(); | ||
|
||
// Steps | ||
for (const step of steps()) { | ||
expect( | ||
screen.getByRole('heading', {name: step.title ?? StepTitle[step.type]}) | ||
).toBeInTheDocument(); | ||
} | ||
// Renders SDK version from registry | ||
expect( | ||
await screen.findByText( | ||
textWithMarkupMatcher(/Install-Package Sentry.AspNetCore -Version 1\.99\.9/) | ||
) | ||
).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
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
Oops, something went wrong.