Ocelot-Social/cypress/e2e/Notification.Mention/the_unread_counter_is_removed.js

7 lines
187 B
JavaScript

import { Then } from "@badeball/cypress-cucumber-preprocessor";
Then("the unread counter is removed", () => {
cy.get('.notifications-menu .counter-icon')
.should('not.exist');
});