saleor-dashboard/cypress/steps/shared/confirmationMessage.js

9 lines
266 B
JavaScript
Raw Normal View History

2021-07-05 10:21:35 +00:00
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");
}