mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-23 19:32:51 +00:00
remove console.logs from tests
This commit is contained in:
parent
c8c12e8b41
commit
495af5d568
1 changed files with 2 additions and 6 deletions
|
@ -24,13 +24,9 @@ describe "ZipManager with RedisManager", ->
|
|||
"redis-sharelatex" : createClient: () =>
|
||||
rclient ?=
|
||||
auth:-> # only assign one rclient
|
||||
multi: () =>
|
||||
console.log 'returning rclient', rclient
|
||||
rclient
|
||||
multi: () => rclient
|
||||
set: (key, value) => rclient.store[key] = value
|
||||
get: (key) =>
|
||||
console.log 'GET', key
|
||||
rclient.results.push rclient.store[key]
|
||||
get: (key) => rclient.results.push rclient.store[key]
|
||||
incr: (key) => rclient.store[key]++
|
||||
exec: (callback) =>
|
||||
callback.apply(null, [null, rclient.results])
|
||||
|
|
Loading…
Reference in a new issue