mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
8 lines
183 B
JavaScript
8 lines
183 B
JavaScript
import { Given } from "cypress-cucumber-preprocessor/steps";
|
|
|
|
Given("I navigate to page {string}", page => {
|
|
if (page === "landing") {
|
|
page = "";
|
|
}
|
|
cy.visit(`/${page}`);
|
|
}); |