Ocelot-Social/cypress/e2e/Post.Create/I_choose_{string}_as_the_title.js

9 lines
308 B
JavaScript

import { When } from "@badeball/cypress-cucumber-preprocessor";
When("I choose {string} as the title", async title => {
const lastPost = {}
lastPost.title = title.replace("\n", " ");
cy.task('pushValue', { name: 'lastPost', value: lastPost })
cy.get('input[name="title"]').type(lastPost.title);
});