saleor-dashboard/cypress/steps/shared/confirmationMessages.js
Karolina Rakoczy 1f01a09e87
add tags (#1251)
* add tags

* edit e2e.yaml

* fix test for customer registration

* add empty lines
2021-07-23 12:46:44 +03:00

8 lines
274 B
JavaScript

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