mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2025-07-27 08:00:06 +02:00

* [misc] silence logger when running tests * [misc] re-enable logging in some tests for scripts * [misc] make it easy to turn on verbose logging for tests ``` LOG_LEVEL=debug make test_unit LOG_LEVEL=debug make test_acceptance ``` GitOrigin-RevId: 219bc6d1f9cbdb89ddd7d94742920913ddde4514
50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
// TODO: This file was created by bulk-decaffeinate.
|
|
// Fix any style issues and re-enable lint.
|
|
/*
|
|
* decaffeinate suggestions:
|
|
* DS101: Remove unnecessary use of Array.from
|
|
* DS102: Remove unnecessary code created because of implicit returns
|
|
* DS103: Rewrite code to no longer use __guard__
|
|
* DS205: Consider reworking code to avoid use of IIFEs
|
|
* DS207: Consider shorter variations of null checks
|
|
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
|
|
*/
|
|
const app = require('../../../../app')
|
|
const Settings = require('@overleaf/settings')
|
|
|
|
module.exports = {
|
|
running: false,
|
|
initing: false,
|
|
callbacks: [],
|
|
ensureRunning(callback) {
|
|
if (callback == null) {
|
|
callback = function () {}
|
|
}
|
|
if (this.running) {
|
|
return callback()
|
|
} else if (this.initing) {
|
|
return this.callbacks.push(callback)
|
|
} else {
|
|
this.initing = true
|
|
this.callbacks.push(callback)
|
|
return app.listen(
|
|
Settings.internal.clsi.port,
|
|
Settings.internal.clsi.host,
|
|
error => {
|
|
if (error != null) {
|
|
throw error
|
|
}
|
|
this.running = true
|
|
|
|
return (() => {
|
|
const result = []
|
|
for (callback of Array.from(this.callbacks)) {
|
|
result.push(callback())
|
|
}
|
|
return result
|
|
})()
|
|
}
|
|
)
|
|
}
|
|
},
|
|
}
|