2017-03-13 21:08:23 -04:00
|
|
|
import { browser, element, by, promise } from 'protractor';
|
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-09 20:22:08 -05:00
|
|
|
page.navigateTo();
|
2017-01-27 03:20:51 -05:00
|
|
|
});
|
|
|
|
|
2017-02-02 15:10:47 -05:00
|
|
|
it('should show features text after clicking "Features"', () => {
|
2017-02-09 20:22:08 -05:00
|
|
|
page.featureLink.click().then(() => {
|
2017-03-14 17:19:19 -04:00
|
|
|
expect(page.getDocViewerText()).toMatch(/Progressive web apps/i);
|
2017-02-09 20:22:08 -05:00
|
|
|
});
|
2017-01-27 03:20:51 -05:00
|
|
|
});
|
2017-02-07 15:57:18 -05:00
|
|
|
|
2017-02-21 01:28:40 -05:00
|
|
|
it('should convert a doc with a code-example');
|
2017-03-13 21:08:23 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
});
|
|
|
|
|
2017-01-27 03:20:51 -05:00
|
|
|
});
|