Skip to content

Commit 3387a6f

Browse files
committed
fix
1 parent 37e1537 commit 3387a6f

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

tests/integration/tools/atlas/atlasHelpers.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { setupIntegrationTest, defaultTestConfig, defaultDriverOptions } from ".
66
import type { SuiteCollector } from "vitest";
77
import { afterAll, beforeAll, describe } from "vitest";
88
import type { Session } from "../../../../src/common/session.js";
9-
import { get } from "ts-levenshtein";
109

1110
export type IntegrationTestFunction = (integration: IntegrationTest) => void;
1211

tests/integration/tools/atlas/clusters.test.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
import { before } from "node:test";
21
import type { Session } from "../../../../src/common/session.js";
32
import { expectDefined, getResponseContent } from "../../helpers.js";
4-
import { describeWithAtlas, withProject, withCluster, randomId, deleteCluster, waitCluster, sleep } from "./atlasHelpers.js";
3+
import {
4+
describeWithAtlas,
5+
withProject,
6+
withCluster,
7+
randomId,
8+
deleteCluster,
9+
waitCluster,
10+
sleep,
11+
} from "./atlasHelpers.js";
512
import { afterAll, beforeAll, describe, expect, it, vitest } from "vitest";
6-
import cluster from "cluster";
7-
import { connect } from "http2";
8-
import { connected } from "process";
913

1014
describeWithAtlas("clusters", (integration) => {
1115
withProject(integration, ({ getProjectId, getIpAddress }) => {

0 commit comments

Comments
 (0)