Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion test/e2e/specs/editor/blocks/site-title.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ test.describe( 'Site Title block', () => {
await requestUtils.updateSiteSettings( { title: originalSiteTitle } );
} );

test( 'Can edit the site title as admin', async ( {
// Reinstate once the patch that fixes the REST API endpoints is committed to core.
// https://core.trac.wordpress.org/ticket/41604.
// eslint-disable-next-line playwright/no-skipped-test
test.skip( 'Can edit the site title as admin', async ( {
admin,
editor,
page,
Expand Down
10 changes: 8 additions & 2 deletions test/e2e/specs/editor/various/multi-entity-saving.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ test.describe( 'Editor - Multi-entity save flow', () => {
} );
} );

test( 'Save flow should work as expected', async ( {
// Reinstate once the patch that fixes the REST API endpoints is committed to core.
// https://core.trac.wordpress.org/ticket/41604.
// eslint-disable-next-line playwright/no-skipped-test
test.skip( 'Save flow should work as expected', async ( {
admin,
editor,
page,
Expand Down Expand Up @@ -146,7 +149,10 @@ test.describe( 'Editor - Multi-entity save flow', () => {
await expect( openSavePanel ).toBeEnabled();
} );

test( 'Site blocks should save individually', async ( {
// Reinstate once the patch that fixes the REST API endpoints is committed to core.
// https://core.trac.wordpress.org/ticket/41604.
// eslint-disable-next-line playwright/no-skipped-test
test.skip( 'Site blocks should save individually', async ( {
admin,
editor,
page,
Expand Down
Loading