Skip to content

Commit

Permalink
fix node unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 committed Oct 17, 2023
1 parent b0278f3 commit 19dc843
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/tests/unit/redisV4Mock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const v4Client = {
get: promisify(client.get).bind(client),
set: setFixed,
del: promisify(client.del).bind(client),
incr: promisify(client.incr).bind(client),
incrby: promisify(client.incrby).bind(client),
hSet: promisify(client.hset).bind(client),
hGet: promisify(client.hget).bind(client),
hDel: promisify(client.hdel).bind(client),
Expand Down

0 comments on commit 19dc843

Please sign in to comment.