describe('Original App Homepage', () => {
  beforeEach(() => cy.visit('/tabs/property-selection'));
  it('Has Three Tabs', () => {
    cy.get('ion-tab-button[tab="property-selection"]');
    cy.get('ion-tab-button[tab="property-details"]');
    cy.get('ion-tab-button[tab="property-inspections"]');
  })

  xit('Navigates to Property details tab when it is clicked', () => {
    cy.get('ion-tab-button[tab="property-details"]').click();
    cy.url().should('include', '/tabs/property-details');
  });

  xit('Navigates to Inspections & Events tab when it is clicked', () => {
    cy.get('ion-tab-button[tab="property-inspections"]').click();
    cy.url().should('include', '/tabs/property-inspections');
  });

  xit('Navigates to Property Selection tab when it is clicked', () => {
    cy.get('ion-tab-button[tab="property-selection"]').click();
    cy.url().should('include', '/tabs/property-selection');
  });
})
