saleor-dashboard/cypress/steps/shared/confirmationMessage.js
2021-07-05 12:21:35 +02:00

8 lines
266 B
JavaScript

import { SHARED_ELEMENTS } from "../../elements/shared/sharedElements";
export function confirmationMessageShouldDisappear() {
cy.get(SHARED_ELEMENTS.confirmationMsg)
.should("be.visible")
.get(SHARED_ELEMENTS.confirmationMsg)
.should("not.exist");
}