mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-03 22:54:07 +00:00
timeout option passed to clsi
This commit is contained in:
parent
7293ccf06d
commit
e7906f7018
2 changed files with 3 additions and 1 deletions
|
@ -99,6 +99,7 @@ module.exports = ClsiManager =
|
|||
compile:
|
||||
options:
|
||||
compiler: project.compiler
|
||||
timeout: settingsOverride.timeout
|
||||
rootResourcePath: rootResourcePath
|
||||
resources: resources
|
||||
}
|
||||
|
|
|
@ -123,7 +123,7 @@ describe "ClsiManager", ->
|
|||
|
||||
describe "with a valid project", ->
|
||||
beforeEach (done) ->
|
||||
@ClsiManager._buildRequest @project_id, null, (error, request) =>
|
||||
@ClsiManager._buildRequest @project_id, {timeout:100}, (error, request) =>
|
||||
@request = request
|
||||
done()
|
||||
|
||||
|
@ -147,6 +147,7 @@ describe "ClsiManager", ->
|
|||
compile:
|
||||
options:
|
||||
compiler: @compiler
|
||||
timeout : 100
|
||||
rootResourcePath: "main.tex"
|
||||
resources: [{
|
||||
path: "main.tex"
|
||||
|
|
Loading…
Reference in a new issue