We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdf32bd commit 4093bffCopy full SHA for 4093bff
apps/cli/src/agent/extension-host.ts
@@ -152,7 +152,10 @@ export class ExtensionHost extends EventEmitter implements ExtensionHostInterfac
152
constructor(options: ExtensionHostOptions) {
153
super()
154
155
- this.options = options
+ this.options = {
156
+ ...options,
157
+ integrationTest: true, // Always set to true in CLI mode to allow tests to control console suppression
158
+ }
159
160
// Set up quiet mode early, before any extension code runs.
161
// This suppresses console output from the extension during load.
0 commit comments