Skip to content
Closed
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
6 changes: 4 additions & 2 deletions test/e2e/specs/editor/blocks/navigation.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1891,7 +1891,9 @@ test.describe( 'Navigation block', () => {
} );
await expect( linkButton ).toBeVisible();
await expect( linkButton ).toBeEnabled();
await expect( linkButton ).toContainText( 'localhost' );
await expect( linkButton ).toContainText(
'Test Page 1 – gutenberg'
);
} );

await test.step( 'Click LinkPicker button to open dropdown', async () => {
Expand Down Expand Up @@ -2143,7 +2145,7 @@ class Navigation {

getLinkControlLink( linkName ) {
return this.page.getByRole( 'link', {
name: `${ linkName } (opens in a new tab)`,
name: `${ linkName } – gutenberg (opens in a new tab)`,
exact: true,
} );
}
Expand Down
Loading