File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
packages/playground/website/playwright/e2e Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -773,10 +773,11 @@ test.describe('Route persistence', () => {
773773 // Navigate with route=blueprints
774774 await website . goto ( './?route=blueprints' ) ;
775775
776- // Verify sidebar is open
777- await expect ( website . page . locator ( '.main-sidebar' ) ) . toBeVisible ( ) ;
776+ // Verify URL has route=blueprints
777+ expect ( website . page . url ( ) ) . toContain ( 'route=blueprints' ) ;
778778
779- // Verify we're on the blueprints section (look for blueprints gallery content)
779+ // Verify site manager is open by checking for the blueprints content
780+ // (In mobile view, only the active panel is shown, not the sidebar list)
780781 await expect (
781782 website . page . getByRole ( 'heading' , { name : 'Blueprints Gallery' } )
782783 ) . toBeVisible ( ) ;
You can’t perform that action at this time.
0 commit comments