Ocelot-Social/cypress/integration/common/I_see_a_{string}_message.js
2021-09-27 12:15:18 +02:00

5 lines
144 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then("I see a {string} message:", (_type, message) => {
cy.contains(message);
});