feat(demo): add demo Angular application

This commit is contained in:
Ken Sodemann
2017-11-09 20:16:18 -06:00
parent 874457d76c
commit 5113363845
46 changed files with 11155 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import { HomePage } from './home.po';
describe('Demo Home Page', () => {
let page: HomePage;
beforeEach(() => {
page = new HomePage();
});
it('should display title', () => {
page.navigateTo();
expect(page.getTitle()).toEqual('Ionic Core Angular Demo Application');
});
it('should navigate to home for root', () => {
page.navigateToRoot();
expect(page.getTitle()).toEqual('Ionic Core Angular Demo Application');
});
});