Skip to content

Commit

Permalink
e2e: Skip long-failing VideoPress test
Browse files Browse the repository at this point in the history
We've been muting this since February, and the failure seems to be
specific to the test sites. Time to just `.skip` it until the team gets
a chance to fix it.
  • Loading branch information
anomiex committed Sep 16, 2024
1 parent 0d57256 commit d9ba64e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/e2e/specs/blocks/blocks__media.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ describe( DataHelper.createSuiteTitle( 'Blocks: Media (Upload)' ), function () {
} );

// If this starts failing, check whether Premium or higher plan is enabled.
it( `${ VideoPressBlock.blockName } block: upload video file`, async function () {
// 2024-09-16: Skipping. This has been failing all year, seems to be a problem with the backend and the way the test sites get cleaned up. p1707923887553869-slack-C034JEXD1RD
it.skip( `${ VideoPressBlock.blockName } block: upload video file`, async function () {
await editorPage.addBlockFromSidebar(
VideoPressBlock.blockName,
VideoPressBlock.blockEditorSelector,
Expand Down Expand Up @@ -162,7 +163,8 @@ describe( DataHelper.createSuiteTitle( 'Blocks: Media (Upload)' ), function () {
await FileBlock.validatePublishedContent( page, [ testFiles.audio.filename ] );
} );

it( `VideoPress block is visible`, async function () {
// Skipped above.
it.skip( `VideoPress block is visible`, async function () {
await VideoPressBlock.validatePublishedContent( page );
} );
} );
Expand Down

0 comments on commit d9ba64e

Please sign in to comment.