mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-12 23:35:52 +00:00
10 lines
233 B
JavaScript
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();
|
|
});
|