2017-01-27 00:20:51 -08:00
|
|
|
import { SitePage } from './app.po';
|
|
|
|
|
|
|
|
describe('site App', function() {
|
|
|
|
let page: SitePage;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
page = new SitePage();
|
2017-02-10 03:22:08 +02:00
|
|
|
page.navigateTo();
|
2017-01-27 00:20:51 -08:00
|
|
|
});
|
|
|
|
|
2017-02-02 12:10:47 -08:00
|
|
|
it('should show features text after clicking "Features"', () => {
|
2017-02-10 03:22:08 +02:00
|
|
|
page.featureLink.click().then(() => {
|
|
|
|
expect(page.getDocViewerText()).toContain('Progressive web apps');
|
|
|
|
});
|
2017-01-27 00:20:51 -08:00
|
|
|
});
|
2017-02-07 12:57:18 -08:00
|
|
|
|
2017-02-20 22:28:40 -08:00
|
|
|
it('should convert a doc with a code-example');
|
2017-01-27 00:20:51 -08:00
|
|
|
});
|