https://github.com/angular/angular
Raw File
Tip revision: d17d4a3b549a7278f027a7774bbc3af57912fa14 authored by Chuck Jazdzewski on 10 March 2017, 20:26:19 UTC
docs: add changelog for 4.0.0-rc.3
Tip revision: d17d4a3
app.e2e-spec.ts
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');
});
back to top