mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
11 lines
244 B
JavaScript
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");
|
|
});
|
|
}); |