fix(core): hide recovered wake failures
This commit is contained in:
parent
911664db67
commit
ecf6c532d5
2 changed files with 19 additions and 18 deletions
|
|
@ -750,9 +750,10 @@ describe("SessionRunCoordinator", () => {
|
|||
yield* coordinator.wake("session", 1)
|
||||
yield* coordinator.wake("session", 2)
|
||||
yield* Deferred.succeed(firstGate, undefined)
|
||||
yield* coordinator.awaitIdle("session").pipe(Effect.exit)
|
||||
const idle = yield* coordinator.awaitIdle("session").pipe(Effect.exit)
|
||||
|
||||
expect(runs).toBe(3)
|
||||
expect(runs).toBe(3)
|
||||
expect(Exit.isSuccess(idle)).toBeTrue()
|
||||
}),
|
||||
),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue