Migrate to Angular 4

This commit is contained in:
2017-10-01 03:55:01 +02:00
parent b9bcc26258
commit 31fd9f27e9
55 changed files with 947 additions and 581 deletions

View File

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