Skip to content

Commit d4b914b

Browse files
committed
Fix waiting for progressbar
1 parent 2169634 commit d4b914b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/e2e/src/main/npm/e2e/tests/analysis.e2e.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ describe('For project with analysis', () => {
6161
console.error('Wait until analysis is queued.......');
6262
waitUntilCondition(200,() => {
6363
return analysisList.getExecutions().then(executionList => {
64-
console.error(executionList);
65-
return executionList.length == 1 && executionList[0].status.search('Queued|progress') !== -1;
64+
return executionList.length == 1 && executionList[0].status.search('progress') !== -1;
6665
});
6766
}, 3000)
6867
.then(() => {

0 commit comments

Comments
 (0)