Written a very simple e2e-test with cypress
[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').click();
5     cy.url().should('include', '/heroes')
6   });
7 })