overleaf/services/web/public/coffee/tests/unit/helpers.coffee
2014-02-12 10:23:40 +00:00

10 lines
226 B
CoffeeScript

define [
"underscore"
"libs/backbone"
], () ->
class SocketIoMock
constructor: () ->
_.extend(SocketIoMock::, Backbone.Events)
SocketIoMock::emit = () -> @trigger.apply(@, arguments)
return SocketIoMock: SocketIoMock