Skip to content

Commit a281a18

Browse files
ref: rectified a small issue
1 parent 92a0a1d commit a281a18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/utils/polling.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ async function shortPolling(buildId, retries = 0, options) {
6868
}
6969

7070
CURRENT_TIME = CURRENT_TIME + INTERVAL
71-
if (CURRENT_TIME == MAX_INTERVAL) {
71+
if (CURRENT_TIME >= MAX_INTERVAL) {
7272
console.log('[smartui] Please check the build status on LambdaTest SmartUI.');
7373
return;
7474
}

0 commit comments

Comments
 (0)