Add a new Angular app with 4 components

This commit is contained in:
Sébastien André
2019-09-17 13:48:16 +02:00
parent d9a79ebe0f
commit e79ac82861
47 changed files with 13521 additions and 0 deletions

View File

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