We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa64220 commit bb87d82Copy full SHA for bb87d82
static/app/gettingStartedDocs/convex/convex.spec.tsx
@@ -0,0 +1,14 @@
1
+import {renderWithOnboardingLayout} from 'sentry-test/onboarding/renderWithOnboardingLayout';
2
+import {screen} from 'sentry-test/reactTestingLibrary';
3
+
4
+import docs from './convex';
5
6
+describe('convex onboarding docs', function () {
7
+ it('renders docs correctly', function () {
8
+ renderWithOnboardingLayout(docs);
9
10
+ // Renders main headings
11
+ expect(screen.getByRole('heading', {name: 'Install'})).toBeInTheDocument();
12
+ expect(screen.getByRole('heading', {name: 'Verify'})).toBeInTheDocument();
13
+ });
14
+});
0 commit comments