ci(aio): deploy from CI to staging

This commit is contained in:
Georgios Kalpakas
2017-01-25 19:39:01 +02:00
committed by Igor Minar
parent c37af2af5a
commit 4165fddfc4
20 changed files with 864 additions and 85 deletions

View File

@ -9,6 +9,6 @@ describe('site App', function() {
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
expect(page.getParagraphText()).toEqual('home-page works!');
});
});

View File

@ -6,6 +6,6 @@ export class SitePage {
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
return element(by.css('app-home-page p')).getText();
}
}