overleaf/services/document-updater/test/acceptance/coffee/helpers/DocUpdaterApp.coffee
2018-02-15 16:28:40 +00:00

20 lines
No EOL
465 B
CoffeeScript

app = require('../../../../app')
require("logger-sharelatex").logger.level("fatal")
module.exports =
running: false
initing: false
callbacks: []
ensureRunning: (callback = (error) ->) ->
if @running
return callback()
else if @initing
@callbacks.push callback
else
@initing = true
@callbacks.push callback
app.listen 3003, "localhost", (error) =>
throw error if error?
@running = true
for callback in @callbacks
callback()