Updating app to ionic-angular latest beta

This commit is contained in:
Matt Netkow
2019-01-16 14:17:08 -06:00
parent 63a1db96a0
commit 3bdf5412b6
39 changed files with 4016 additions and 2676 deletions
+1 -1
View File
@@ -9,6 +9,6 @@ describe('new App', () => {
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toContain('The world is your oyster.');
expect(page.getPageTitle()).toContain('Tab One');
});
});
+2 -2
View File
@@ -5,7 +5,7 @@ export class AppPage {
return browser.get('/');
}
getParagraphText() {
return element(by.deepCss('app-root ion-content')).getText();
getPageTitle() {
return element(by.css('ion-title')).getText();
}
}