()
| 269 | } |
| 270 | |
| 271 | createUsers() { |
| 272 | describe('When creating the users', () => { |
| 273 | this.noRequestsShouldError(async () => { |
| 274 | await this.alice.setUser(this.userData.alice); |
| 275 | await this.bob.setUser(this.userData.bob); |
| 276 | await this.carl.setUser(this.userData.carl); |
| 277 | await this.dave.setUser(this.userData.dave); |
| 278 | }); |
| 279 | }); |
| 280 | } |
| 281 | |
| 282 | reactionToReactionInActivity = (reaction, user) => { |
| 283 | reaction = { ...reaction }; |
no test coverage detected