var MockClient = function() { this.on = jest.fn(); this.initialize = jest.fn().mockResolvedValue(undefined); this.getChats = jest.fn().mockResolvedValue([]); this.destroy = jest.fn().mockResolvedValue(undefined); }; module.exports = { Client: MockClient, LocalAuth: function() {}, };