8 lines
291 B
JavaScript
8 lines
291 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");
|
|
});
|