it('visiting contacts', () => {
    cy.visit('/contacts');
    cy.location().should((loc) => {
      expect(loc.pathname).to.eq('/contacts');
    });