-
Notifications
You must be signed in to change notification settings - Fork 36
chore: add orgId and projectid #159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 15 commits
938342d
ab608c8
39a7def
ee23bed
9b675d4
4a764fe
bfd6d3b
dc0e4d3
596c233
36dab1c
72539ab
43e5c75
8721c39
b4ac4db
bbc49be
a06c460
a95af7b
3eee38c
f0142ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,12 @@ export function describeWithMongoDB( | |
const integration = setupIntegrationTest(() => ({ | ||
...getUserConfig(mdbIntegration), | ||
connectionString: mdbIntegration.connectionString(), | ||
telemetry: "disabled", // Explicitly disable telemetry | ||
})); | ||
|
||
beforeEach(() => { | ||
integration.mcpServer().userConfig.connectionString = mdbIntegration.connectionString(); | ||
integration.mcpServer().userConfig.telemetry = "disabled"; // Ensure telemetry stays disabled | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [q] do we need to do this for atlas as well? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. if we are changing this value on the fly, it would be better for the test that changes it to change it back. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've been testing this, need to change it slightly, will udpate There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. updated, and atlas is not emitting, only mdbtools were missing |
||
}); | ||
|
||
fn({ | ||
|
Uh oh!
There was an error while loading. Please reload this page.