Ocelot-Social/cypress/integration/common/I_am_on_page_{string}.js
Ulf Gebhardt d29cff193c
Notification.Mention.feature
Regex for URL matches "I am on page ..."
Fixed some category/search related errors
2021-04-12 13:24:51 +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));
});