chore(): move demos/angular to angular/test

This commit is contained in:
Adam Bradley
2018-03-21 14:05:02 -05:00
parent 99610f7f08
commit 3829886a74
133 changed files with 0 additions and 4 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.getTitleText()).toEqual('Ionic Core Angular Demo Application');
});
it('should navigate to home for root', () => {
page.navigateToRoot();
expect(page.getTitleText()).toEqual('Ionic Core Angular Demo Application');
});
});