Mercurial > hg > ugly-duckling
annotate 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 |
rev | line source |
---|---|
angular-cli@0 | 1 import { UglyDucklingPage } from './app.po'; |
angular-cli@0 | 2 |
dev@236 | 3 describe('ugly-duckling App', () => { |
angular-cli@0 | 4 let page: UglyDucklingPage; |
angular-cli@0 | 5 |
angular-cli@0 | 6 beforeEach(() => { |
angular-cli@0 | 7 page = new UglyDucklingPage(); |
angular-cli@0 | 8 }); |
angular-cli@0 | 9 |
angular-cli@0 | 10 it('should display message saying app works', () => { |
angular-cli@0 | 11 page.navigateTo(); |
angular-cli@0 | 12 expect(page.getParagraphText()).toEqual('app works!'); |
angular-cli@0 | 13 }); |
angular-cli@0 | 14 }); |