Ocelot-Social/cypress/e2e/Notification.Mention/mention_{string}_in_the_text.js

10 lines
233 B
JavaScript

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