mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
15 lines
297 B
TypeScript
15 lines
297 B
TypeScript
import { MyappPage } from './app.po';
|
|
|
|
describe('myapp App', () => {
|
|
let page: MyappPage;
|
|
|
|
beforeEach(() => {
|
|
page = new MyappPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|