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