Ocelot-Social/cypress/integration/Authentication/when_I_refresh_the_page.js
Ulf Gebhardt c52dceddf2
authentication feature
fixed a problem in login component
2021-04-14 20:36:12 +02:00

6 lines
130 B
JavaScript

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