Ocelot-Social/cypress/integration/common/I_refresh_the_page.js

6 lines
130 B
JavaScript

import { When } from "cypress-cucumber-preprocessor/steps";
When('I refresh the page', () => {
cy.visit('/')
.reload();
});