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 43e5c75 commit 8721c39Copy full SHA for 8721c39
tests/integration/tools/mongodb/mongodbHelpers.ts
@@ -22,10 +22,12 @@ export function describeWithMongoDB(
22
const integration = setupIntegrationTest(() => ({
23
...getUserConfig(mdbIntegration),
24
connectionString: mdbIntegration.connectionString(),
25
+ telemetry: "disabled", // Explicitly disable telemetry
26
}));
27
28
beforeEach(() => {
29
integration.mcpServer().userConfig.connectionString = mdbIntegration.connectionString();
30
+ integration.mcpServer().userConfig.telemetry = "disabled"; // Ensure telemetry stays disabled
31
});
32
33
fn({
0 commit comments