UNPKG

ts-mean

Version:

Boilerplate for a TS-MEAN App

15 lines (11 loc) 290 B
import { UserPage } from './app.po'; describe('user App', () => { let page: UserPage; beforeEach(() => { page = new UserPage(); }); it('should display welcome message', () => { page.navigateTo(); expect(page.getParagraphText()).toEqual('Welcome to app!!'); }); });