We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cdb4779 commit 157e10dCopy full SHA for 157e10d
tests/integration/tools/atlas/clusters.test.ts
@@ -11,14 +11,7 @@ function sleep(ms: number): Promise<void> {
11
// keeping it for cleanup scripts if needed
12
// eslint-disable-next-line @typescript-eslint/no-unused-vars
13
async function deleteAndWaitCluster(session: Session, projectId: string, clusterName: string): Promise<void> {
14
- await session.apiClient.deleteCluster({
15
- params: {
16
- path: {
17
- groupId: projectId,
18
- clusterName,
19
- },
20
21
- });
+ await deleteCluster(session, projectId, clusterName);
22
while (true) {
23
try {
24
await session.apiClient.getCluster({
0 commit comments