mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
adjusting unit tests
This commit is contained in:
parent
5ad0ca08f9
commit
4320b790bd
2 changed files with 4 additions and 4 deletions
|
@ -30,7 +30,7 @@ module.exports = CompileManager =
|
|||
return callback(error) if error?
|
||||
DocumentUpdaterHandler.flushProjectToMongo project_id, (error) ->
|
||||
return callback(error) if error?
|
||||
ClsiManager.sendRequest project_id, opt.settingsOverride ? null, (error, status, outputFiles) ->
|
||||
ClsiManager.sendRequest project_id, opt.settingsOverride, (error, status, outputFiles) ->
|
||||
return callback(error) if error?
|
||||
logger.log files: outputFiles, "output files"
|
||||
callback(null, status, outputFiles)
|
||||
|
|
|
@ -44,7 +44,7 @@ describe "CompileController", ->
|
|||
|
||||
it "should do the compile without the auto compile flag", ->
|
||||
@CompileManager.compile
|
||||
.calledWith(@project_id, @user_id, { isAutoCompile: false })
|
||||
.calledWith(@project_id, @user_id, { isAutoCompile: false, settingsOverride:{} })
|
||||
.should.equal true
|
||||
|
||||
it "should set the content-type of the response to application/json", ->
|
||||
|
@ -71,7 +71,7 @@ describe "CompileController", ->
|
|||
|
||||
it "should do the compile with the auto compile flag", ->
|
||||
@CompileManager.compile
|
||||
.calledWith(@project_id, @user_id, { isAutoCompile: true })
|
||||
.calledWith(@project_id, @user_id, { isAutoCompile: true, settingsOverride:{} })
|
||||
.should.equal true
|
||||
|
||||
describe "downloadPdf", ->
|
||||
|
|
Loading…
Reference in a new issue