Skip to content

Commit 9674a3f

Browse files
authored
fix: updates the maxTimeout for the keploy test to 5 minutes (#104)
* fix: updates the maxTimeout for keploy test to 5 minutes Signed-off-by: re-Tick <jain.ritik.1001@gmail.com> --------- Signed-off-by: re-Tick <jain.ritik.1001@gmail.com>
1 parent f5f2b3f commit 9674a3f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

keployCli.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ export const Test = async (appCmd: string, options: TestOptions, callback: (err:
3232
appCmd = "npm start"
3333
}
3434
if (options.maxTimeout === 0 || options.maxTimeout === undefined || options.maxTimeout === null) {
35-
options.maxTimeout = 30000;
35+
options.maxTimeout = 300000;
3636
}
37-
3837
let testResult = true;
3938
let startTime = Date.now();
4039
try {

0 commit comments

Comments
 (0)