(userId)
| 29 | } |
| 30 | |
| 31 | function randUserId(userId) { |
| 32 | return `${userId}-${Date.now()}-${Math.round(Math.random() * 1000)}`; |
| 33 | } |
| 34 | |
| 35 | function createFeedWithToken(client, feedGroup, userId, readOnly) { |
| 36 | userId = randUserId(userId); |
no outgoing calls
no test coverage detected