File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -169,5 +169,3 @@ export const UserConfigSchema = z4.object({
169169 . default ( [ ] )
170170 . describe ( "An array of preview features that are enabled." ) ,
171171} ) ;
172-
173- export const defaultUserConfig = UserConfigSchema . parse ( { } ) ;
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import { Elicitation } from "../../src/elicitation.js";
1818import type { MockClientCapabilities , createMockElicitInput } from "../utils/elicitationMocks.js" ;
1919import { VectorSearchEmbeddingsManager } from "../../src/common/search/vectorSearchEmbeddingsManager.js" ;
2020import { defaultCreateAtlasLocalClient } from "../../src/common/atlasLocal.js" ;
21- import { defaultUserConfig } from "../../src/common/config/userConfig.js" ;
21+ import { UserConfigSchema } from "../../src/common/config/userConfig.js" ;
2222
2323interface Parameter {
2424 name : string ;
@@ -43,7 +43,7 @@ export interface IntegrationTest {
4343 mcpServer : ( ) => Server ;
4444}
4545export const defaultTestConfig : UserConfig = {
46- ...defaultUserConfig ,
46+ ...UserConfigSchema . parse ( { } ) ,
4747 telemetry : "disabled" ,
4848 loggers : [ "stderr" ] ,
4949} ;
You can’t perform that action at this time.
0 commit comments