Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Replay failure analysis for commit Based on my investigation, I can now compile the thin slice of observations: Thin Slice
SummaryThe test failed because the FramesPanel is contained within a side panel that has been collapsed to 0% width. The localStorage evidence shows that at 3529ms, The test clicks at coordinates (35, 374) which collapses the side panel, then immediately waits for the FramesPanel to be visible without waiting for the panel expansion state to be restored. The test needs to either avoid collapsing the side panel, or explicitly expand it again and wait for the panel resize to complete before asserting the FramesPanel is visible. |
|
Replay failure analysis for commit Based on my investigation of the recording, here is the thin slice of observations: Thin Slice
SummaryThe FramesPanel element exists in the DOM but is hidden because the side panel containing it is collapsed (width = 0px). The The test needs to expand the side panel before waiting for the FramesPanel to become visible. The side panel is collapsed (width=0) due to the layout_sidePanelCollapsed:true preference, so the FramesPanel element exists but remains hidden. Add a step to click the side panel expand button or toggle the panel open before asserting on FramesPanel visibility. |
No description provided.