// @ts-ignore
// TODO(ProjectSetup): to be deleted after figuring the structure

import { ROUTE_PATHS } from '../../src/constants/routePaths'

describe('Example', () => {
  it('will always pass', () => {
    cy.visitRoute(ROUTE_PATHS.home)
    cy.interceptGetCars()
    cy.get('body').should('exist')
    // verify that UI has changed with the mocked response
  })
})
