diff --git a/src/frontend/tests/pui_command.spec.ts b/src/frontend/tests/pui_command.spec.ts index c90d622d30..3084daf82f 100644 --- a/src/frontend/tests/pui_command.spec.ts +++ b/src/frontend/tests/pui_command.spec.ts @@ -41,12 +41,16 @@ test('PUI - Quick Command', async ({ page }) => { await page.getByPlaceholder('Search...').press('Enter'); await page.waitForURL('**/platform/dashboard'); + // Reset + await page.goto('./platform/'); + // Use navigation menu await page.getByRole('button', { name: 'Open spotlight' }).click(); await page .getByRole('button', { name: 'Open Navigation Open the main' }) .click(); // assert the nav headers are visible + await page.getByRole('heading', { name: 'Navigation' }).click(); await page.getByRole('heading', { name: 'Pages' }).click(); await page.getByRole('heading', { name: 'Documentation' }).click(); await page.getByRole('heading', { name: 'About' }).click();