Skip to content

Commit

Permalink
fix(test): class 'Page5' incorrectly extends base class
Browse files Browse the repository at this point in the history
  • Loading branch information
manucorporat committed Nov 4, 2016
1 parent 9506a78 commit a98284a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/nav/test/worst-case/app-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ export class Base {
ionViewWillUnload() {
log(`${this._name} willUnload`);
}
ionViewCanLeave() {
ionViewCanLeave(): boolean|Promise<any> {
log(`${this._name} canLeave`);
return true;
}
ionViewCanEnter() {
ionViewCanEnter(): boolean|Promise<any> {
log(`${this._name} canEnter`);
return true;
}
Expand Down

0 comments on commit a98284a

Please sign in to comment.