fix(e2e): back to running all in a single driver

The key here is to ensure to properly await, and to make sure the element that is being waited for is specified, at least for more complex views, though it would be best for ALL views.
This commit is contained in:
Ken Sodemann
2018-02-02 10:27:18 -06:00
parent 6639f99556
commit fe4dac8630
3 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ class E2ETestPage extends Page {
}
platforms.forEach(platform => {
describe.skip('events/basic', () => {
describe('events/basic', () => {
register('should init', driver => {
const page = new E2ETestPage(driver, platform);

View File

@@ -13,7 +13,7 @@ platforms.forEach(platform => {
describe('infinite-scroll/basic', () => {
register('should init', driver => {
const page = new E2ETestPage(driver, platform);
return page.navigate();
return page.navigate('#content');
});
});
});

View File

@@ -18,7 +18,7 @@
</ion-toolbar>
</ion-header>
<ion-content padding>
<ion-content id="content" padding>
<ion-button onclick="toggleInfiniteScroll()" block>
Toggle InfiniteScroll