mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
18 lines
374 B
CoffeeScript
18 lines
374 B
CoffeeScript
|
sinon = require('sinon')
|
||
|
|
||
|
idCounter = 0
|
||
|
|
||
|
module.exports = class MockClient
|
||
|
constructor: () ->
|
||
|
@attributes = {}
|
||
|
@join = sinon.stub()
|
||
|
@emit = sinon.stub()
|
||
|
@disconnect = sinon.stub()
|
||
|
@id = idCounter++
|
||
|
set : (key, value, callback) ->
|
||
|
@attributes[key] = value
|
||
|
callback() if callback?
|
||
|
get : (key, callback) ->
|
||
|
callback null, @attributes[key]
|
||
|
disconnect: () ->
|