Ocelot-Social/cypress/integration/Authentication/then_I_am_on_page_{string}.js
Ulf Gebhardt c52dceddf2
authentication feature
fixed a problem in login component
2021-04-14 20:36:12 +02:00

5 lines
155 B
JavaScript

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