@@ -42,9 +42,10 @@ func TestBuildOptions_IncludesModelMaxTurnsPermission(t *testing.T) {
4242 User : testIdentity (),
4343 })
4444 require .NoError (t , err )
45- // 4 base options (model, max-turns, permission, allowed-tools) + 1 archy MCP server = 5.
46- // External MCPs in baseline config = 0.
47- assert .Equal (t , 5 , applyOpts (t , opts ))
45+ // 5 base options (model, max-turns, permission, allowed-tools,
46+ // verbose) + 1 archy MCP server = 6. External MCPs in baseline
47+ // config = 0.
48+ assert .Equal (t , 6 , applyOpts (t , opts ))
4849}
4950
5051func TestBuildOptions_RegistersExternalEnabledMCPServer (t * testing.T ) {
@@ -54,7 +55,7 @@ func TestBuildOptions_RegistersExternalEnabledMCPServer(t *testing.T) {
5455 }
5556 opts , err := buildOptions (cfg , Options {ArchyBinaryPath : "/fake/archy" , User : testIdentity ()})
5657 require .NoError (t , err )
57- assert .Equal (t , 6 , applyOpts (t , opts ), "5 base/archy + 1 external" )
58+ assert .Equal (t , 7 , applyOpts (t , opts ), "6 base/archy + 1 external" )
5859}
5960
6061func TestBuildOptions_SkipsDisabledExternalMCPServer (t * testing.T ) {
@@ -64,7 +65,7 @@ func TestBuildOptions_SkipsDisabledExternalMCPServer(t *testing.T) {
6465 }
6566 opts , err := buildOptions (cfg , Options {ArchyBinaryPath : "/fake/archy" , User : testIdentity ()})
6667 require .NoError (t , err )
67- assert .Equal (t , 5 , applyOpts (t , opts ))
68+ assert .Equal (t , 6 , applyOpts (t , opts ))
6869}
6970
7071func TestBuildOptions_ExternalServerBadScheme (t * testing.T ) {
0 commit comments