2017-07-04 10:58:20 -04:00
|
|
|
import { AppPage } from './app.po';
|
|
|
|
|
|
|
|
describe('feature-modules App', () => {
|
|
|
|
let page: AppPage;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
page = new AppPage();
|
|
|
|
});
|
|
|
|
|
2020-11-23 20:17:10 +02:00
|
|
|
it('should display message saying app works', async () => {
|
|
|
|
await page.navigateTo();
|
|
|
|
expect(await page.getTitleText()).toEqual('app works!');
|
2017-07-04 10:58:20 -04:00
|
|
|
});
|
|
|
|
});
|