import { MonitorClientPage } from './app.po'; describe('monitor-client App', () => { let page: MonitorClientPage; beforeEach(() => { page = new MonitorClientPage(); }); it('should display message saying app works', () => { page.navigateTo(); expect(page.getParagraphText()).toContain('app works!'); }); });