Ocelot-Social/cypress/integration/Search/the_search_parameter_equals_{string}.js
2021-04-12 13:24:51 +02:00

6 lines
172 B
JavaScript

import { Then } from "cypress-cucumber-preprocessor/steps";
Then("the search parameter equals {string}", search => {
cy.location("search")
.should("eq", search);
});