diff --git a/cmd/helm/list_test.go b/cmd/helm/list_test.go index b3b29356e..7fba67f08 100644 --- a/cmd/helm/list_test.go +++ b/cmd/helm/list_test.go @@ -148,6 +148,16 @@ func TestListCmd(t *testing.T) { cmd: "list", golden: "output/list.txt", rels: releaseFixture, + }, { + name: "list releases in full yaml format", + cmd: "list --output yaml", + golden: "output/list-full-yaml.txt", + rels: releaseFixture, + }, { + name: "list releases in full json format", + cmd: "list --output json", + golden: "output/list-full-json.txt", + rels: releaseFixture, }, { name: "list all releases", cmd: "list --all",