Ocelot-Social/cypress/integration/Notification.Mention/the_unread_counter_is_removed.js
Ulf Gebhardt d29cff193c
Notification.Mention.feature
Regex for URL matches "I am on page ..."
Fixed some category/search related errors
2021-04-12 13:24:51 +02:00

6 lines
182 B
JavaScript

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