Initial commit

This commit is contained in:
2017-06-16 21:07:23 -04:00
commit 1f53b639f5
43 changed files with 905 additions and 0 deletions

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

@@ -0,0 +1,14 @@
import { QuickstartPage } from './app.po';
describe('quickstart App', () => {
let page: QuickstartPage;
beforeEach(() => {
page = new QuickstartPage();
});
it('should display message saying app works', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('app works!');
});
});