fix(templates): suffix templates page #8320 (#8368)

This commit is contained in:
Ramon Henrique Ornelas
2016-10-18 17:37:45 -02:00
committed by Justin Willis
parent d334a43108
commit 61620f8d48
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
describe('$CLASSNAME', () => {
describe('$CLASSNAMEPage', () => {
it('should do something', () => {
expect(true).toEqual(true);
});

View File

@ -16,7 +16,7 @@ export class $CLASSNAMEPage {
constructor(public navCtrl: NavController) {}
ionViewDidLoad() {
console.log('Hello $CLASSNAME Page');
console.log('Hello $CLASSNAMEPage Page');
}
}

View File

@ -1,5 +1,5 @@
describe('$CLASSNAME', () => {
describe('$CLASSNAMEPage', () => {
it('should do something', () => {
expect(true).toEqual(true);
});

View File

@ -12,7 +12,7 @@ $TAB_IMPORTS
selector: 'page-$FILENAME',
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {
export class $CLASSNAMEPage {
$TAB_VARIABLES