Ocelot-Social/cypress/integration/common/{string}_wrote_a_post_{string}.js

11 lines
221 B
JavaScript

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