Ocelot-Social/cypress/integration/common/{string}_wrote_a_post_{string}.js
2021-04-14 20:36:14 +02:00

10 lines
216 B
JavaScript

import { Given } from "cypress-cucumber-preprocessor/steps";
Given('{string} wrote a post {string}', (author, title) => {
cy.factory()
.build("post", {
title,
}, {
authorId: author,
});
});