mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 23:40:14 +01:00
14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
import { Ng2AdminCLIPage } from './app.po';
|
|
|
|
describe('ng2-admin-cli App', () => {
|
|
let page: Ng2AdminCLIPage;
|
|
|
|
beforeEach(() => {
|
|
page = new Ng2AdminCLIPage();
|
|
});
|
|
|
|
it('should display message saying app works', () => {
|
|
page.navigateTo();
|
|
expect(page.getParagraphText()).toEqual('app works!');
|
|
});
|
|
});
|