We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38bc42 commit 4b279b5Copy full SHA for 4b279b5
src/components/nav/test/child-navs/app-module.ts
@@ -19,7 +19,7 @@ export class E2EApp {
19
</ion-header>
20
21
<ion-content>
22
- <button ion-button color="primary" (click)="goToPage()" class="nested-children-test">
+ <button ion-button color="primary" (click)="goToPage()" class="e2eChildNavsNested">
23
Nested Children Test
24
</button>
25
</ion-content>
@@ -32,10 +32,6 @@ export class LandingPage {
32
goToPage() {
33
this.navCtrl.push(FirstPage);
34
}
35
-
36
- ionViewDidLoad() {
37
- this.goToPage();
38
- }
39
40
41
@Component({
src/components/nav/test/child-navs/e2e.ts
@@ -0,0 +1,4 @@
1
+
2
+it('should go to nested children', function() {
3
+ element(by.css('.e2eChildNavsNested')).click();
4
+});
src/components/nav/test/worst-case/e2e.ts
0 commit comments