Skip to content

Commit

Permalink
fix: updates the maxTimeout for the keploy test to 5 minutes (#104)
Browse files Browse the repository at this point in the history
* fix: updates the maxTimeout for keploy test to 5 minutes

Signed-off-by: re-Tick <[email protected]>

---------

Signed-off-by: re-Tick <[email protected]>
  • Loading branch information
re-Tick authored Feb 26, 2024
1 parent f5f2b3f commit 9674a3f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions keployCli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ export const Test = async (appCmd: string, options: TestOptions, callback: (err:
appCmd = "npm start"
}
if (options.maxTimeout === 0 || options.maxTimeout === undefined || options.maxTimeout === null) {
options.maxTimeout = 30000;
options.maxTimeout = 300000;
}

let testResult = true;
let startTime = Date.now();
try {
Expand Down

0 comments on commit 9674a3f

Please sign in to comment.