()
| 307 | } |
| 308 | |
| 309 | func redisClient() *redis.Client { |
| 310 | return redis.NewClient(&redis.Options{ |
| 311 | Addr: "localhost:6379", |
| 312 | }) |
| 313 | } |
| 314 | |
| 315 | func joinToken(room, name string, customFn func(token *auth.AccessToken, grants *auth.VideoGrant)) string { |
| 316 | at := auth.NewAccessToken(testApiKey, testApiSecret). |
no outgoing calls
no test coverage detected