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

5 lines
170 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then("I see a toaster with {string}", (title) => {
cy.get(".iziToast-message").should("contain", title);
})