Revert "cmd: claude launch improvements (#14064)" (#14071)

This reverts commit ee25219edd.
This commit is contained in:
Jeffrey Morgan
2026-02-04 09:10:37 -08:00
committed by GitHub
parent df70249520
commit cefabd79a8
15 changed files with 81 additions and 1609 deletions

View File

@@ -509,19 +509,3 @@ func TestBuildModelList_ReturnsExistingAndCloudMaps(t *testing.T) {
t.Error("llama3.2 should not be in cloudModels")
}
}
func TestAliasConfigurerInterface(t *testing.T) {
t.Run("claude implements AliasConfigurer", func(t *testing.T) {
claude := &Claude{}
if _, ok := interface{}(claude).(AliasConfigurer); !ok {
t.Error("Claude should implement AliasConfigurer")
}
})
t.Run("codex does not implement AliasConfigurer", func(t *testing.T) {
codex := &Codex{}
if _, ok := interface{}(codex).(AliasConfigurer); ok {
t.Error("Codex should not implement AliasConfigurer")
}
})
}