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

7 lines
135 B
JavaScript

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