mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
fix(cli): set integrationTest to true in ExtensionHost constructor (#10826)
This commit is contained in:
parent
fdf32bd55e
commit
4093bff3ae
1 changed files with 4 additions and 1 deletions
|
|
@ -152,7 +152,10 @@ export class ExtensionHost extends EventEmitter implements ExtensionHostInterfac
|
|||
constructor(options: ExtensionHostOptions) {
|
||||
super()
|
||||
|
||||
this.options = options
|
||||
this.options = {
|
||||
...options,
|
||||
integrationTest: true, // Always set to true in CLI mode to allow tests to control console suppression
|
||||
}
|
||||
|
||||
// Set up quiet mode early, before any extension code runs.
|
||||
// This suppresses console output from the extension during load.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue