Skip to content

Commit

Permalink
chore: next try to fix the wdi5 issues
Browse files Browse the repository at this point in the history
  • Loading branch information
petermuessig committed Aug 24, 2024
1 parent e07c1cf commit f3976c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion showcases/ui5-app/webapp/test/e2e/binding.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ describe("binding", function () {
expect(onTheOtherPage.iShouldSeeListItems()).toBeTruthy();

// ui5 api + high-speed aggregation retrieval: https://ui5-community.github.io/wdi5/#/usage?id=getshorthand-conveniences
const aListItems = await browser.asControl(list).getItems(true);
const oList = await browser.asControl(this._listPeople);
const aListItems = await oList.getItems(true);
expect(aListItems.length).toBeGreaterThanOrEqual(1);
});
});

0 comments on commit f3976c6

Please sign in to comment.