mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Fix FileStore unit tests
This commit is contained in:
parent
bad9a0282d
commit
a95c941cb9
1 changed files with 7 additions and 1 deletions
|
@ -19,7 +19,7 @@ describe "FileStoreHandler", ->
|
|||
on: (type, cb)->
|
||||
if type == "end"
|
||||
cb()
|
||||
@readStream = {my:"readStream"}
|
||||
@readStream = {my:"readStream", on: sinon.stub()}
|
||||
@request = sinon.stub()
|
||||
@settings = apis:{filestore:{url:"http//filestore.sharelatex.test"}}
|
||||
@handler = SandboxedModule.require modulePath, requires:
|
||||
|
@ -128,6 +128,12 @@ describe "FileStoreHandler", ->
|
|||
@handler.getFileStream @project_id, @file_id, {}, (err, stream)=>
|
||||
@handler._buildUrl.calledWith(@project_id, @file_id).should.equal true
|
||||
done()
|
||||
|
||||
it "should add an error handler", (done) ->
|
||||
@handler.getFileStream @project_id, @file_id, {}, (err, stream)=>
|
||||
stream.on.calledWith("error").should.equal true
|
||||
done()
|
||||
|
||||
|
||||
describe "copyFile", ->
|
||||
|
||||
|
|
Loading…
Reference in a new issue