Skip to content

Commit

Permalink
longer delay
Browse files Browse the repository at this point in the history
  • Loading branch information
animehart committed Jun 28, 2023
1 parent 7cd831b commit e6afae7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
for (const [columnName, dir, sortingMethod] of testCases) {
await latestFindingsTable.toggleColumnSort(columnName, dir);
/* This sleep or delay is added to allow some time for the column to settle down before we get the value and to prevent the test from getting the wrong value*/
await sleep(1000);
await sleep(3000);
const values = (await latestFindingsTable.getColumnValues(columnName)).filter(Boolean);
expect(values).to.not.be.empty();
const sorted = values
Expand Down

0 comments on commit e6afae7

Please sign in to comment.