a335a3da398b9921adfa52c1e70b9b4a17622abe
[examples/angular-tour-of-heroes] / cypress / integration / heroes-spec.ts
1 describe('The Home Page', () => {
2   it('successfully loads', () => {
3     cy.visit('/');
4     cy.get('app-root nav a[routerLink="/heroes"').click();
5     cy.url().should('include', '/heroes');
6   });
7 })