mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
8 lines
305 B
JavaScript
8 lines
305 B
JavaScript
import { Then } from "cypress-cucumber-preprocessor/steps";
|
|
|
|
Then("the post was saved successfully", async () => {
|
|
cy.task('getValue', 'lastPost').then(lastPost => {
|
|
cy.get(".base-card > .title").should("contain", lastPost.title);
|
|
cy.get(".content").should("contain", lastPost.content);
|
|
})
|
|
}); |