func TestCommandsHaveSynopsis(t *testing.T) {
    for _, c := range allCommands(RootCmd) {
        t.Run(fmt.Sprintf("test short description of command %s", c.Name()), func(t *testing.T) {
            assert.NotEmpty(t, c.Short)
        })