view e2e/app.e2e-spec.ts @ 509:041468f553e1 tip master

Merge pull request #57 from LucasThompson/fix/session-stack-max-call-stack Fix accidental recursion in PersistentStack
author Lucas Thompson <LucasThompson@users.noreply.github.com>
date Mon, 27 Nov 2017 11:04:30 +0000
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!');
  });
});