Rename class back to open separate PR

This commit is contained in:
mattwr18 2020-01-14 11:01:34 +01:00
parent 77ef3b0406
commit 177121d64d

View File

@ -271,11 +271,11 @@ Then("the post was saved successfully", () => {
});
Then(/^I should see only ([0-9]+) posts? on the landing page/, postCount => {
cy.get(".post-card").should("have.length", postCount);
cy.get(".hc-post-card").should("have.length", postCount);
});
Then("the first post on the landing page has the title:", title => {
cy.get(".post-card:first").should("contain", title);
cy.get(".hc-post-card:first").should("contain", title);
});
Then(