mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
import { SitePage } from './app.po';
|
|
|
|
describe('site App', function() {
|
|
let page: SitePage;
|
|
|
|
beforeEach(() => {
|
|
page = new SitePage();
|
|
page.navigateTo();
|
|
});
|
|
|
|
it('should show features text after clicking "Features"', () => {
|
|
page.featureLink.click().then(() => {
|
|
expect(page.getDocViewerText()).toContain('Progressive web apps');
|
|
});
|
|
});
|
|
|
|
it('should convert a doc with a code-example');
|
|
});
|