(entityType: string)
| 322 | yield* Fiber.join(fiber) |
| 323 | |
| 324 | const findRun = (entityType: string) => |
| 325 | driver.journal.find( |
| 326 | (envelope) => |
| 327 | envelope._tag === "Request" && |
| 328 | envelope.address.entityType === entityType && |
| 329 | envelope.tag === "run" |
| 330 | ) |
| 331 | const parentRun = findRun("Workflow/DiscardParentWorkflow") |
| 332 | const childRun = findRun("Workflow/DiscardChildWorkflow") |
| 333 | assert.exists(parentRun, "expected a run envelope for the parent workflow") |
no outgoing calls
no test coverage detected