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

5 lines
174 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then("I am on page {string}", page => {
cy.location("pathname").should("contain", page.replace("...", ""));
});