mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Regex for URL matches "I am on page ..." Fixed some category/search related errors
9 lines
228 B
JavaScript
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();
|
|
}); |