mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* add integration 2.0.0 test * update readme * add integration test in travis * restore tsconfig.dev * fix test script travis call * improve script * fix npm run test
15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
import { AdfAppPage } from './app.po';
|
|
|
|
describe('adf-app App', () => {
|
|
let page: AdfAppPage;
|
|
|
|
beforeEach(() => {
|
|
page = new AdfAppPage();
|
|
});
|
|
|
|
it('should display toolbar', () => {
|
|
page.navigateTo();
|
|
expect(page.getToolbar()).toBeDefined();
|
|
});
|
|
});
|