view e2e/app.e2e-spec.ts @ 324:e433a2da0ada

Refactor the import library logic slightly to waterfall the loading of the libraries and list requests, and send one response when all libraries have been loaded.
author Lucas Thompson <dev@lucas.im>
date Tue, 16 May 2017 16:16:57 +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!');
  });
});