Skip to content

Commit

Permalink
Skip instead of delete
Browse files Browse the repository at this point in the history
Signed-off-by: Simeon Widdis <[email protected]>
  • Loading branch information
Swiddis committed Nov 27, 2023
1 parent d112e88 commit 2cf7408
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,23 @@ describe('Testing panels table', () => {

cy.contains(TEST_PANEL).should('exist');
});

it.skip('Duplicates a panel', () => {
cy.get('.euiCheckbox__input[title="Select this row"]')
.eq(0)
.trigger('mouseover')
.click();
cy.wait(delay);
cy.get('.euiButton__text').contains('Actions').trigger('mouseover').click();
cy.wait(delay);
cy.get('.euiContextMenuItem__text')
.contains('Duplicate')
.trigger('mouseover')
.click();
cy.get('.euiButton__text')
.contains('Duplicate')
.trigger('mouseover')
.click();
cy.wait(delay);
});
});

0 comments on commit 2cf7408

Please sign in to comment.