(t *testing.T)
| 48 | } |
| 49 | |
| 50 | func InitChannel(t *testing.T) string { |
| 51 | name := RandomString(10) |
| 52 | c := InitClient() |
| 53 | _, _ = c.CreateChannel(context.Background(), "messaging", name, "userid", nil) |
| 54 | return name |
| 55 | } |
| 56 | |
| 57 | func DeleteChannel(id string) { |
| 58 | c := InitClient() |