Draft of WebUI

This commit is contained in:
ziajka
2017-09-25 13:07:52 +02:00
parent eca48dd435
commit 7968368b81
79 changed files with 11391 additions and 1 deletions

14
e2e/app.e2e-spec.ts Normal file
View File

@ -0,0 +1,14 @@
import { Gns3WebUiPage } from './app.po';
describe('gns3-web-ui App', () => {
let page: Gns3WebUiPage;
beforeEach(() => {
page = new Gns3WebUiPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to app!');
});
});