2017-02-22 13:13:21 -05:00
|
|
|
import { MyAppPage } from './app.po';
|
|
|
|
|
|
|
|
describe('my-app App', function() {
|
|
|
|
let page: MyAppPage;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
page = new MyAppPage();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should display message saying app works', () => {
|
|
|
|
page.navigateTo();
|
2017-06-30 10:06:00 -04:00
|
|
|
expect(page.getParagraphText()).toEqual('Welcome to app!!');
|
2017-02-22 13:13:21 -05:00
|
|
|
});
|
|
|
|
});
|