Skip to content

Commit 239f6bf

Browse files
Merge pull request #85 from parthlambdatest/Dot-3538
ref: rectified a small issue
2 parents 4dce7a9 + a281a18 commit 239f6bf

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)