https://cypress.io logo
Here's my code: ``` // test.cy.ts beforeEach(() =>...
# e2e-testing
w
Here's my code:
Copy code
// test.cy.ts
beforeEach(() => {
    cy.wait(300);
});
afterEach(() => {
    cy.wait(100);
});

describe('Test ', () => {
  it('Go to homepage ', () => {
    cy.visit('/');
  });

  it('Login ', () => {
    login();
  });

  it('Profile ', () => {
    profile();
  });
})
After finish test with error, I check cookie that save logged user info, it isn't exsist