fix core integration test yet again
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
Jonatan Nilsson 2022-03-10 13:11:23 +00:00
parent 87cc47f498
commit 73e9be2ff0

View file

@ -318,17 +318,15 @@ runners.forEach(function([runnerName, appname]) {
let checkListening = await sendRequestToApplication(listening)
assert.strictEqual(checkListening.body.version, 'v1')
while (!hasLogLine(/core is running/)) {
await catchupLog(10)
while (!hasLogLine(/is up and running/)) {
await setTimeout(10)
if (processor.exitCode !== null) {
throw new Error('Process exited with ' + processor.exitCode)
}
}
while (!hasLogLine(/is up and running/)) {
await setTimeout(10)
}
await setTimeout(50)
catchupLog()
let db = JSON.parse(await fs.readFile(util.getPathFromRoot('./db.json')))