Skip to content

Commit

Permalink
Disable broken e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
adamziel committed Dec 9, 2021
1 parent c1470fa commit 057dea9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ describe( 'Multi-entity save flow', () => {
expect( multiSaveButton ).toBeNull();
};

it( 'Save flow should work as expected.', async () => {
await createNewPost();
// Template parts can't be used in posts, so this test needs to be rebuilt using perhaps reusable blocks.
it.skip( 'Save flow should work as expected.', async () => {
// Edit the page some.
await page.click( '.editor-post-title' );
await page.keyboard.type( 'Test Post...' );
Expand Down
3 changes: 2 additions & 1 deletion packages/e2e-tests/specs/site-editor/template-part.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ describe( 'Template Part', () => {
const confirmTitleButtonSelector =
'.wp-block-template-part__placeholder-create-new__title-form .components-button.is-primary';

it( 'Should insert new template part on creation', async () => {
// Template parts can't be used in posts, so this test needs to be rebuilt for the template editor.
it.skip( 'Should insert new template part on creation', async () => {
await createNewPost();
await disablePrePublishChecks();
// Create new template part.
Expand Down

0 comments on commit 057dea9

Please sign in to comment.