chore: initial commit from @angular/cli

_                      _                 ____ _     ___
   / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
  / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
 / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
/_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
               |___/
This commit is contained in:
Angular CLI
2017-05-10 19:05:25 +03:00
commit 7068d20183
29 changed files with 691 additions and 0 deletions

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

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