Ocelot-Social/cypress/e2e/Post.Comment/I_comment_the_following.js

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