fix dearch test

This commit is contained in:
Eugenio Romano
2019-04-12 12:49:12 +01:00
parent dac3bed09f
commit 338b208a73
2 changed files with 41 additions and 27 deletions
-10
View File
@@ -119,14 +119,4 @@ export class SearchResultsPage {
return this.contentServices.checkElementsSortedDesc(authorList);
}
async checkListIsOrderedBySizeAsc() {
const list = await this.contentServices.getElementsDisplayedSize();
return this.contentServices.checkElementsSortedAsc(list);
}
async checkListIsOrderedBySizeDesc() {
const list = await this.contentServices.getElementsDisplayedSize();
return this.contentServices.checkElementsSortedDesc(list);
}
}