2021-07-15 11:17:56 +00:00
|
|
|
import { SHARED_ELEMENTS } from "../../elements/shared/sharedElements";
|
|
|
|
|
|
|
|
export function confirmationMessageShouldDisappear() {
|
2021-07-23 09:46:44 +00:00
|
|
|
cy.get(SHARED_ELEMENTS.notificationSuccess)
|
2021-07-15 11:17:56 +00:00
|
|
|
.should("be.visible")
|
2021-07-23 09:46:44 +00:00
|
|
|
.get(SHARED_ELEMENTS.notificationSuccess)
|
2021-07-15 11:17:56 +00:00
|
|
|
.should("not.exist");
|
|
|
|
}
|