test(coding-agent): fix interactive mode fixture
This commit is contained in:
+2
@@ -41,6 +41,7 @@ type RenderSessionContextThis = {
|
||||
settingsManager: {
|
||||
getShowImages(): boolean;
|
||||
getImageWidthCells(): number;
|
||||
getShowCacheMissNotices(): boolean;
|
||||
};
|
||||
sessionManager: { getCwd(): string; getEntries(): SessionEntry[] };
|
||||
session: { retryAttempt: number; modelRegistry: { find(provider: string, modelId: string): undefined } };
|
||||
@@ -70,6 +71,7 @@ function createFakeInteractiveModeThis(): RenderSessionContextThis {
|
||||
settingsManager: {
|
||||
getShowImages: () => false,
|
||||
getImageWidthCells: () => 60,
|
||||
getShowCacheMissNotices: () => false,
|
||||
},
|
||||
sessionManager: { getCwd: () => process.cwd(), getEntries: () => [] },
|
||||
session: { retryAttempt: 0, modelRegistry: { find: () => undefined } },
|
||||
|
||||
Reference in New Issue
Block a user