2021-09-27 10:04:21 +00:00
|
|
|
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");
|
|
|
|
});
|
2022-03-28 09:52:06 +00:00
|
|
|
|
|
|
|
Cypress.Commands.add("confirmationMessageShouldAppear", () => {
|
|
|
|
cy.get(SHARED_ELEMENTS.notificationSuccess).should("be.visible");
|
|
|
|
});
|