2017-01-27 03:20:51 -05:00
|
|
|
import { SitePage } from './app.po';
|
|
|
|
|
|
|
|
describe('site App', function() {
|
|
|
|
let page: SitePage;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
page = new SitePage();
|
|
|
|
});
|
|
|
|
|
2017-02-02 15:10:47 -05:00
|
|
|
it('should show features text after clicking "Features"', () => {
|
2017-02-03 02:02:23 -05:00
|
|
|
page.navigateTo()
|
|
|
|
.then(() => {
|
|
|
|
return page.featureLink.click();
|
|
|
|
})
|
|
|
|
.then(() => {
|
|
|
|
expect(page.getDocViewerText()).toContain('Progressive web apps');
|
|
|
|
});
|
2017-01-27 03:20:51 -05:00
|
|
|
});
|
|
|
|
});
|