Ocelot-Social/cypress/integration/common/I_follow_the_user_{string}.js
2021-04-12 13:24:52 +02:00

11 lines
244 B
JavaScript

Given("I follow the user {string}", name => {
cy.neode()
.first("User", {name})
.then(followed => {
cy.neode()
.first("User", {
name: "Peter Pan"
})
.relateTo(followed, "following");
});
});