Upgraded Angular version

This commit is contained in:
2019-10-01 02:50:20 +05:30
parent f4159a9090
commit 1e6c412ba6
10 changed files with 11143 additions and 92 deletions

View File

@@ -9,6 +9,6 @@ describe('workspace-project App', () => {
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to PictureStory!');
expect(page.getTitleText()).toEqual('Welcome to PictureStory!');
});
});

View File

@@ -5,7 +5,7 @@ export class AppPage {
return browser.get('/');
}
getParagraphText() {
getTitleText() {
return element(by.css('app-root h1')).getText();
}
}