mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
14 lines
395 B
CoffeeScript
14 lines
395 B
CoffeeScript
|
sinon = require('sinon')
|
||
|
chai = require('chai')
|
||
|
should = chai.should()
|
||
|
expect = chai.expect
|
||
|
modulePath = "../../../../app/js/Features/Messages/MessageFormatter.js"
|
||
|
SandboxedModule = require('sandboxed-module')
|
||
|
events = require "events"
|
||
|
ObjectId = require("mongojs").ObjectId
|
||
|
|
||
|
describe "MessageFormatter", ->
|
||
|
beforeEach ->
|
||
|
@MessageFormatter = SandboxedModule.require modulePath, requires: {}
|
||
|
|