https://cypress.io logo
```ts beforeEach(() => { cy.wait(300); cy.ses...
# e2e-testing
b
Copy code
ts
beforeEach(() => {
    cy.wait(300);
 cy.session('login', () => {
  login();
 });
});

afterEach(() => {
    cy.wait(100);
});

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

  it('Profile ', () => {
    profile();
  });
})