Skip to content

Commit

Permalink
fix timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
HananINouman committed Feb 4, 2025
1 parent 8d29a91 commit b8f192f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sdk-package-test/cluster.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ describe('Poll Cluster Lock', () => {
setTimeout(function () {
clearInterval(pollReqIntervalId);
reject(new Error('Time out'));
}, 5000);
}, 10000);
}),
(async () => {
await updateClusterDef(clusterLockV1X8.cluster_definition);
Expand Down Expand Up @@ -406,7 +406,7 @@ describe('Poll Cluster Lock', () => {
setTimeout(function () {
clearInterval(pollReqIntervalId);
reject(new Error('Time out'));
}, 5000);
}, 10000);
}),
(async () => {
await updateClusterDef(clusterLockV1X8.cluster_definition);
Expand Down

0 comments on commit b8f192f

Please sign in to comment.