Ocelot-Social/cypress/integration/Notification.Mention/mention_{string}_in_the_text.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

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();
});