Ocelot-Social/cypress/integration/common/I_am_on_page_{string}.js
Ulf Gebhardt f8d87a4e98
Notification.Mention.feature
Regex for URL matches "I am on page ..."
Fixed some category/search related errors
2021-04-14 20:36:13 +02:00

6 lines
170 B
JavaScript

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