Skip to content

Commit

Permalink
style: logs the maxTimeout when test exection exceeds
Browse files Browse the repository at this point in the history
Signed-off-by: re-Tick <[email protected]>
  • Loading branch information
re-Tick committed Feb 26, 2024
1 parent eb6d7a3 commit ece81c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keployCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const Test = async (appCmd: string, options: TestOptions, callback: (err:
break;
}
if (Date.now() - startTime > options.maxTimeout) {
console.log("Timeout reached, exiting loop", Date.now() - startTime, options.maxTimeout);
console.log("Timeout reached, exiting loop. maxTimeout: ", options.maxTimeout);
break;
}
console.log("testRun still in progress");
Expand Down

0 comments on commit ece81c8

Please sign in to comment.