Skip to content

Instantly share code, notes, and snippets.

View maximnara's full-sized avatar

Max Luzhkov maximnara

View GitHub Profile
@maximnara
maximnara / redis.js
Created August 21, 2019 07:08
How to mock depedency in object
class Redis {
connect(config) {
this.connection = Promise.promisifyAll(Redis.getRedis().createClient(config));
};
static getRedis() {
return redis;
};
}