Sean Condon | 83fc39f | 2018-04-19 18:56:13 +0100 | [diff] [blame] | 1 | import { AppPage } from './app.po'; |
2 | |||||
3 | describe('onos App', () => { | ||||
4 | let page: AppPage; | ||||
5 | |||||
6 | beforeEach(() => { | ||||
7 | page = new AppPage(); | ||||
8 | }); | ||||
9 | |||||
10 | it('should display welcome message', () => { | ||||
11 | page.navigateTo(); | ||||
12 | expect(page.getParagraphText()).toEqual('Welcome to app!'); | ||||
13 | }); | ||||
14 | }); |