Skip to content

Commit e3c6708

Browse files
ran 'npm run fix'
1 parent 3de5b26 commit e3c6708

File tree

5 files changed

+8
-25
lines changed

5 files changed

+8
-25
lines changed

tests/integration/tools/atlas-local/atlasLocalHelpers.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
import {
2-
defaultDriverOptions,
3-
defaultTestConfig,
4-
setupIntegrationTest,
5-
type IntegrationTest,
6-
} from "../../helpers.js";
1+
import { defaultDriverOptions, defaultTestConfig, setupIntegrationTest, type IntegrationTest } from "../../helpers.js";
72
import { describe } from "vitest";
83

94
const isMacOSInGitHubActions = process.platform === "darwin" && process.env.GITHUB_ACTIONS === "true";
@@ -37,4 +32,3 @@ export function describeWithAtlasLocalDisabled(name: string, fn: IntegrationTest
3732
fn(integration);
3833
});
3934
}
40-

tests/integration/tools/atlas-local/connectDeployment.test.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
import { expect, it, beforeAll, afterAll } from "vitest";
2-
import {
3-
expectDefined,
4-
getResponseElements,
5-
validateToolMetadata,
6-
} from "../../helpers.js";
2+
import { expectDefined, getResponseElements, validateToolMetadata } from "../../helpers.js";
73
import { describeWithAtlasLocal, describeWithAtlasLocalDisabled } from "./atlasLocalHelpers.js";
84

95
describeWithAtlasLocal("atlas-local-connect-deployment", (integration) => {
@@ -120,7 +116,9 @@ describeWithAtlasLocal("atlas-local-connect-deployment with deployments", (integ
120116
});
121117
const findElements = getResponseElements(findResponse.content);
122118
expect(findElements.length).toBe(2);
123-
expect(findElements[0]?.text).toBe("Query on collection \"test-collection\" resulted in 2 documents. Returning 2 documents.");
119+
expect(findElements[0]?.text).toBe(
120+
'Query on collection "test-collection" resulted in 2 documents. Returning 2 documents.'
121+
);
124122
expect(findElements[1]?.text).toContain("document1");
125123
expect(findElements[1]?.text).toContain("document2");
126124
});

tests/integration/tools/atlas-local/createDeployment.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
expectDefined,
3-
getResponseElements,
4-
} from "../../helpers.js";
1+
import { expectDefined, getResponseElements } from "../../helpers.js";
52
import { afterEach, expect, it } from "vitest";
63
import { describeWithAtlasLocal, describeWithAtlasLocalDisabled } from "./atlasLocalHelpers.js";
74

tests/integration/tools/atlas-local/deleteDeployment.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
expectDefined,
3-
getResponseElements,
4-
} from "../../helpers.js";
1+
import { expectDefined, getResponseElements } from "../../helpers.js";
52
import { expect, it } from "vitest";
63
import { describeWithAtlasLocal, describeWithAtlasLocalDisabled } from "./atlasLocalHelpers.js";
74

tests/integration/tools/atlas-local/listDeployments.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
import {
2-
expectDefined,
3-
getResponseElements,
4-
} from "../../helpers.js";
1+
import { expectDefined, getResponseElements } from "../../helpers.js";
52
import { expect, it } from "vitest";
63
import { describeWithAtlasLocal, describeWithAtlasLocalDisabled } from "./atlasLocalHelpers.js";
74

0 commit comments

Comments
 (0)