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