feat(aio): delete unused kruft

This commit is contained in:
Ward Bell
2017-02-02 23:02:23 -08:00
committed by Igor Minar
parent 31d42d87c6
commit a9096437fd
22 changed files with 55 additions and 210 deletions

View File

@ -8,9 +8,12 @@ describe('site App', function() {
});
it('should show features text after clicking "Features"', () => {
page.navigateTo();
page.featureLink.click().then(() => {
expect(page.getDocViewerText()).toContain('Progressive web apps');
});
page.navigateTo()
.then(() => {
return page.featureLink.click();
})
.then(() => {
expect(page.getDocViewerText()).toContain('Progressive web apps');
});
});
});