Skip to content

Commit 302b6f7

Browse files
committed
fix lint
1 parent 88a2ece commit 302b6f7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/integration/tools/mongodb/connect.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@ import { Server } from "../../../../src/server.js";
33
import { runMongoDB, setupIntegrationTest, validateToolResponse } from "../../helpers.js";
44
import runner from "mongodb-runner";
55

6-
import defaultState from "../../../../src/state.js";
76
import config from "../../../../src/config.js";
87

98
describe("Connect tool", () => {
109
let client: Client;
11-
let server: Server;
1210
let serverClientTeardown: () => Promise<void>;
1311

1412
let cluster: runner.MongoCluster;
@@ -27,7 +25,7 @@ describe("Connect tool", () => {
2725

2826
describe("with default config", () => {
2927
beforeEach(async () => {
30-
({ client, server, teardown: serverClientTeardown } = await setupIntegrationTest());
28+
({ client, teardown: serverClientTeardown } = await setupIntegrationTest());
3129
});
3230

3331
it("should have correct metadata", async () => {
@@ -88,7 +86,7 @@ describe("Connect tool", () => {
8886
beforeEach(async () => {
8987
config.connectionString = cluster.connectionString;
9088

91-
({ client, server, teardown: serverClientTeardown } = await setupIntegrationTest());
89+
({ client, teardown: serverClientTeardown } = await setupIntegrationTest());
9290
});
9391

9492
it("uses the connection string from config", async () => {

0 commit comments

Comments
 (0)