saleor-dashboard/cypress/support/customCommands/sharedElementsOperations/confirmationMessages.js
Karolina Rakoczy 8bc2931679
Fix flaky tests for gift cards (#1938)
* fix gift cards

* add new command to search elements on table

* remove unused imports
2022-03-28 13:52:06 +04:00

12 lines
428 B
JavaScript

import { SHARED_ELEMENTS } from "../../../elements/shared/sharedElements";
Cypress.Commands.add("confirmationMessageShouldDisappear", () => {
cy.get(SHARED_ELEMENTS.notificationSuccess)
.should("be.visible")
.get(SHARED_ELEMENTS.notificationSuccess)
.should("not.exist");
});
Cypress.Commands.add("confirmationMessageShouldAppear", () => {
cy.get(SHARED_ELEMENTS.notificationSuccess).should("be.visible");
});