refactor(aio): add the docs, remove the unneeded dependencies, remove a config folder, fix a travis config

This commit is contained in:
Alexander Zhukov 2017-04-19 12:52:08 +03:00
parent 523f44b746
commit b205a6d570
39 changed files with 2516 additions and 1791 deletions

View file

@ -1,14 +0,0 @@
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!');
});
});

View file

@ -1,11 +0,0 @@
import { browser, element, by } from 'protractor';
export class Ng2AdminCLIPage {
navigateTo() {
return browser.get('/');
}
getParagraphText() {
return element(by.css('app-root h1')).getText();
}
}