fix: update Sessions link selector for workspace UI changes#643
Open
empiricalrun[bot] wants to merge 1 commit intomainfrom
Open
fix: update Sessions link selector for workspace UI changes#643empiricalrun[bot] wants to merge 1 commit intomainfrom
empiricalrun[bot] wants to merge 1 commit intomainfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixed the failing test "Verify session creation and basic chat interaction from My Sessions" in
tests/sessions.spec.ts(line 1016).Root Cause
The UI was updated to support multiple workspaces/organizations. The "My Sessions" link no longer exists in the sidebar. Instead, there are now:
/sessions)/lorem-ipsum/sessions)Fix
Updated the selector on line 1016 from:
To:
Using
.first()ensures we target the root-level Sessions link (which appears first in the sidebar) rather than the workspace-level Sessions link.Test Results
✅ Test passed: Report URL
Evidence
Before fix: 100% failure rate across 3 retries in test run #45292
After fix: Test passes consistently
PR created from session #71120
Updated at 2026-01-20 12:39:26.696 UTC