2017-01-27 03:20:51 -05:00
|
|
|
import { SitePage } from './app.po';
|
|
|
|
|
|
|
|
describe('site App', function() {
|
|
|
|
let page: SitePage;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
page = new SitePage();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should display message saying app works', () => {
|
|
|
|
page.navigateTo();
|
2017-01-25 12:39:01 -05:00
|
|
|
expect(page.getParagraphText()).toEqual('home-page works!');
|
2017-01-27 03:20:51 -05:00
|
|
|
});
|
|
|
|
});
|