diff --git a/apps/docs-e2e/src/docs.spec.ts b/apps/docs-e2e/src/docs.spec.ts index 99012ac2..4aafaf07 100644 --- a/apps/docs-e2e/src/docs.spec.ts +++ b/apps/docs-e2e/src/docs.spec.ts @@ -227,6 +227,10 @@ test.describe('should contain hamburger menu elements', { await docsLayoutPage.hamburgerIcon.click() }) + test('should have docs pages section dropdown menu visible', async ({ docsLayoutPage }) => { + await expect(docsLayoutPage.sectionsDropdownButton).toBeVisible() + }) + test('should have website button visible from website dropdown', async ({ docsLayoutPage }) => { await docsLayoutPage.websiteDropdownButton.click() await expect(docsLayoutPage.mobileWebsiteLink).toBeVisible() @@ -450,6 +454,10 @@ test.describe('should contain tablet sidebar elements', { await docsLayoutPage.page.setViewportSize({ width: TABLET_WIDTH, height: TABLET_HEIGHT }) }) + test('should have docs pages section dropdown menu visible', async ({ docsLayoutPage }) => { + await expect(docsLayoutPage.sectionsDropdownButton).toBeVisible() + }) + test('should contain sidebar toggle in tablet sidebar', async ({ docsLayoutPage }) => { await expect(docsLayoutPage.sideBarToggle).toBeVisible() })