2017-07-04 10:58:20 -04:00
|
|
|
import { AppPage } from './app.po';
|
|
|
|
|
|
|
|
|
|
describe('feature-modules App', () => {
|
|
|
|
|
let page: AppPage;
|
|
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
|
page = new AppPage();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('should display message saying app works', () => {
|
|
|
|
|
page.navigateTo();
|
2019-05-09 15:56:24 -05:00
|
|
|
expect(page.getTitleText()).toEqual('app works!');
|
2017-07-04 10:58:20 -04:00
|
|
|
});
|
|
|
|
|
});
|