chore: initial commit from @angular/cli

This commit is contained in:
Angular CLI
2018-01-09 14:34:38 -05:00
commit 1ebf3cf36e
29 changed files with 699 additions and 0 deletions

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

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