exclude upload folder test as far we don't find a solution in chrome 73 (#4473)

* exclude upload folder test as far we don't find a solution in chrome 73

* exclude folder drag and drop test chrome 73

* fix test search

* Update .travis.yml

* xit C279918 C279916

* fix process-service cloud application list
This commit is contained in:
Eugenio Romano
2019-03-23 20:32:03 +00:00
committed by GitHub
parent 4a32fb920f
commit 6059690e79
8 changed files with 83 additions and 48 deletions

View File

@@ -201,7 +201,7 @@ describe('Search Sorting Picker', () => {
searchResults.sortByCreated(true);
browser.controlFlow().execute(async () => {
let results = await searchResults. dataTable.geCellElementDetail('Created');
expect(contentServices.checkElementsSortedAsc(results)).toBe(true);
expect(contentServices.checkElementsDateSortedAsc(results)).toBe(true);
});
});
@@ -209,7 +209,7 @@ describe('Search Sorting Picker', () => {
searchResults.sortByCreated(false);
browser.controlFlow().execute(async () => {
let results = await searchResults. dataTable.geCellElementDetail('Created');
expect(contentServices.checkElementsSortedDesc(results)).toBe(true);
expect(contentServices.checkElementsDateSortedDesc(results)).toBe(true);
});
});
@@ -239,7 +239,7 @@ describe('Search Sorting Picker', () => {
for (let i = 0; i < nodeList.length; i++) {
modifiedDateList.push(new Date(nodeList[i].entry.modifiedAt));
}
expect(contentServices.checkElementsSortedAsc(modifiedDateList)).toBe(true);
expect(contentServices.checkElementsDateSortedAsc(modifiedDateList)).toBe(true);
});
});