18 lines
304 B
TypeScript
18 lines
304 B
TypeScript
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();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|
|
|
|
|
|
|