Ocelot-Social/cypress/integration/Notification.Mention/mention_{string}_in_the_text.js
Ulf Gebhardt f8d87a4e98
Notification.Mention.feature
Regex for URL matches "I am on page ..."
Fixed some category/search related errors
2021-04-14 20:36:13 +02:00

9 lines
228 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When("mention {string} in the text", mention => {
cy.get(".ProseMirror")
.type(" @");
cy.get(".suggestion-list__item")
.contains(mention)
.click();
});