()
| 17 | const mockSend = jest.spyOn(InviteToJoinMailer, 'send').mockImplementation(); |
| 18 | const random = () => 's' + (Math.random() + 1).toString(36).substring(2); |
| 19 | const randomEmail = () => random() + '@' + random() + '.com'; |
| 20 | |
| 21 | describe('accounts endpoints', () => { |
| 22 | const store = { |
no test coverage detected