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