blue-battery-71202
08/18/2022, 11:16 AMts
beforeEach(() => {
cy.wait(300);
cy.session('login', () => {
login();
});
});
afterEach(() => {
cy.wait(100);
});
describe('Test ', () => {
it('Go to homepage ', () => {
cy.visit('/');
});
it('Profile ', () => {
profile();
});
})