1
0
mirror of synced 2025-12-19 18:10:59 -05:00

remove journey article nav components (#58124)

This commit is contained in:
Robert Sese
2025-10-22 13:23:22 -05:00
committed by GitHub
parent 1377b385ce
commit 28158020e3
4 changed files with 6 additions and 58 deletions

View File

@@ -1138,22 +1138,6 @@ test.describe('Journey Tracks', () => {
expect(trackContent).not.toContain('{%')
expect(trackContent).not.toContain('%}')
})
test('journey navigation components show on article pages', async ({ page }) => {
// go to an article that's part of a journey track
await page.goto('/get-started/start-your-journey/hello-world?feature=journey-navigation')
// journey next/prev nav components should rende
const journeyCard = page.locator('[data-testid="journey-track-card"]')
if (await journeyCard.isVisible()) {
await expect(journeyCard).toBeVisible()
}
const journeyNav = page.locator('[data-testid="journey-track-nav"]')
if (await journeyNav.isVisible()) {
await expect(journeyNav).toBeVisible()
}
})
})
test.describe('LandingArticleGridWithFilter component', () => {