1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00

Confirming suspicions about why a testcase is failing in GH actions only.

This commit is contained in:
mike12345567 2020-09-22 09:50:16 +01:00
parent 84372c0100
commit 42d9dd26d9
2 changed files with 3 additions and 2 deletions

View file

@ -170,7 +170,6 @@ describe("/workflows", () => {
expect(res.body.workflow.name).toEqual(TEST_WORKFLOW.name) expect(res.body.workflow.name).toEqual(TEST_WORKFLOW.name)
// wait for workflow to complete in background // wait for workflow to complete in background
for (let tries = 0; tries < MAX_RETRIES; tries++) { for (let tries = 0; tries < MAX_RETRIES; tries++) {
await delay(500)
let elements = await getAllFromModel(request, app._id, instance._id, model._id) let elements = await getAllFromModel(request, app._id, instance._id, model._id)
// don't test it unless there are values to test // don't test it unless there are values to test
if (elements.length === 1) { if (elements.length === 1) {
@ -179,6 +178,7 @@ describe("/workflows", () => {
expect(elements[0].description).toEqual("TEST") expect(elements[0].description).toEqual("TEST")
return return
} }
await delay(500)
} }
throw "Failed to find the records" throw "Failed to find the records"
}) })

View file

@ -23,7 +23,8 @@ function runWorker(job) {
module.exports.init = function() { module.exports.init = function() {
triggers.workflowQueue.process(async job => { triggers.workflowQueue.process(async job => {
if (environment.BUDIBASE_ENVIRONMENT === "PRODUCTION") { if (environment.BUDIBASE_ENVIRONMENT === "PRODUCTION") {
await runWorker(job) //await runWorker(job)
await singleThread(job)
} else { } else {
await singleThread(job) await singleThread(job)
} }