mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-12 23:35:52 +00:00
8 lines
272 B
JavaScript
8 lines
272 B
JavaScript
import { When } from "@badeball/cypress-cucumber-preprocessor";
|
|
|
|
When("I comment the following:", async text => {
|
|
const comment = text.replace("\n", " ")
|
|
cy.task('pushValue', { name: 'lastComment', value: comment })
|
|
cy.get(".editor .ProseMirror").type(comment);
|
|
});
|