cra-template-pi
Version:
A quick start Create React App with many auto implemented features
14 lines (11 loc) • 368 B
text/typescript
// @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
})
})