71 lines
2.1 KiB
TypeScript
71 lines
2.1 KiB
TypeScript
import { browser, element, by, promise } from 'protractor';
|
|
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.getLink('features').click().then(() => {
|
|
expect(page.getDocViewerText()).toMatch(/Progressive web apps/i);
|
|
});
|
|
});
|
|
|
|
it('should show the tutorial index page at `/tutorial/`', () => {
|
|
// check that we can navigate directly to the tutorial page
|
|
page.navigateTo('tutorial/');
|
|
expect(page.getDocViewerText()).toMatch(/Tutorial: Tour of Heroes/i);
|
|
|
|
// navigate to a different page
|
|
page.getLink('features').click();
|
|
|
|
// check that we can navigate to the tutorial page via a link in the navigation
|
|
const heading = page.getNavHeading(/tutorial/i);
|
|
expect(heading.getText()).toMatch(/tutorial/i);
|
|
heading.click();
|
|
page.getLink('tutorial/').click();
|
|
expect(page.getDocViewerText()).toMatch(/Tutorial: Tour of Heroes/i);
|
|
});
|
|
|
|
it('should convert a doc with a code-example');
|
|
|
|
describe('api-docs', () => {
|
|
it('should show a link to github', () => {
|
|
page.navigateTo('api/common/NgClass');
|
|
expect(page.ghLink.getAttribute('href'))
|
|
.toMatch(/https:\/\/github.com\/angular\/angular\/tree\/.+\/packages\/common\/src\/directives\/ng_class\.ts/);
|
|
});
|
|
});
|
|
|
|
describe('google analytics', () => {
|
|
beforeEach(done => page.gaReady.then(done));
|
|
|
|
it('should call ga', done => {
|
|
page.ga()
|
|
.then(calls => {
|
|
expect(calls.length).toBeGreaterThan(2, 'ga calls');
|
|
done();
|
|
});
|
|
});
|
|
|
|
it('should call ga with initial URL', done => {
|
|
let path: string;
|
|
|
|
page.locationPath()
|
|
.then(p => path = p)
|
|
.then(() => page.ga().then(calls => {
|
|
expect(calls.length).toBeGreaterThan(2, 'ga calls');
|
|
expect(calls[1]).toEqual(['set', 'page', path]);
|
|
done();
|
|
}));
|
|
});
|
|
|
|
// Todo: add test to confirm tracking URL when navigate.
|
|
});
|
|
|
|
});
|