view e2e/app.e2e-spec.ts @ 317:cddc1cc19d8d

Merge pull request #36 from LucasThompson/dev/tracks-shape Dev/tracks shape
author Lucas Thompson <LucasThompson@users.noreply.github.com>
date Fri, 12 May 2017 17:20:31 +0100
parents 53ea6406d601
children
line wrap: on
line source
import { UglyDucklingPage } from './app.po';

describe('ugly-duckling App', () => {
  let page: UglyDucklingPage;

  beforeEach(() => {
    page = new UglyDucklingPage();
  });

  it('should display message saying app works', () => {
    page.navigateTo();
    expect(page.getParagraphText()).toEqual('app works!');
  });
});