Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/sessions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1012,8 +1012,8 @@ test.describe('Sessions Tests', () => {
// Wait for successful login
await expect(page.getByText("Lorem Ipsum", { exact: true }).first()).toBeVisible();

// Navigate to My Sessions page
await page.getByRole('link', { name: 'My Sessions', exact: true }).click();
// Navigate to Sessions page (root-level Sessions link, using .first() to avoid matching workspace Sessions link)
await page.getByRole('link', { name: 'Sessions', exact: true }).first().click();

// Wait for list items to load in the my sessions sidebar
await expect(page.getByRole('button', { name: 'Lorem Ipsum' })).toBeVisible({ timeout: 10000 });
Expand Down