Skip to content

Commit

Permalink
fix: exclude to be refactored test
Browse files Browse the repository at this point in the history
  • Loading branch information
kielllll committed Nov 19, 2024
1 parent 2513d66 commit c2ba56a
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions tests/e2e/advanced-checks/confirmation-shortcode.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,14 @@ test( 'should check if the shortcode confirmation type REDIRECT download is work
.ok();
} );

test( 'reset/clean Page entry for the next test', async ( t ) => {
// Actions & Assertions
await page.navigatePage();
await t
.hover( link( '#the-list', 'Test-page' ) )
.click( page.trashLink )
.expect( link( '#the-list', 'Test-page' ).exists )
.notOk();
} );
// TODO: make these scenarios as part of the isolated test cases
// eslint-disable-next-line jest/no-commented-out-tests
// test( 'reset/clean Page entry for the next test', async ( t ) => {
// // Actions & Assertions
// await page.navigatePage();
// await t
// .hover( link( '#the-list', 'Test-page' ) )
// .click( page.trashLink )
// .expect( link( '#the-list', 'Test-page' ).exists )
// .notOk();
// } );

0 comments on commit c2ba56a

Please sign in to comment.