mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
import { Then } from "@badeball/cypress-cucumber-preprocessor";
|
|
|
|
Then("I am on page {string}", page => {
|
|
cy.location("pathname")
|
|
.should("match", new RegExp(page));
|
|
});
|