view e2e/app.e2e-spec.ts @ 484:ae96db60f25c

Move extraction toggle button back to right edge.
author Lucas Thompson <dev@lucas.im>
date Mon, 03 Jul 2017 20:32:51 +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!');
  });
});