projects
/
examples
/
angular-tour-of-heroes
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f6f2d8
)
Fixed the added e2e-test with respect to the added link
author
Kai Moritz
<kai@juplo.de>
Mon, 11 May 2020 16:23:08 +0000
(18:23 +0200)
committer
Kai Moritz
<kai@juplo.de>
Mon, 11 May 2020 16:23:08 +0000
(18:23 +0200)
cypress/integration/heroes-spec.ts
patch
|
blob
|
history
diff --git
a/cypress/integration/heroes-spec.ts
b/cypress/integration/heroes-spec.ts
index
a5158c3
..
a335a3d
100644
(file)
--- a/
cypress/integration/heroes-spec.ts
+++ b/
cypress/integration/heroes-spec.ts
@@
-1,7
+1,7
@@
describe('The Home Page', () => {
it('successfully loads', () => {
cy.visit('/');
- cy.get('app-root nav a').click();
- cy.url().should('include', '/heroes')
+ cy.get('app-root nav a
[routerLink="/heroes"
').click();
+ cy.url().should('include', '/heroes')
;
});
})