(cause: Cause.Cause<E>, expected: Array<FiberId.FiberId>)
| 474 | |
| 475 | it("interruptors", () => { |
| 476 | const expectInterruptors = <E>(cause: Cause.Cause<E>, expected: Array<FiberId.FiberId>) => { |
| 477 | deepStrictEqual([...Cause.interruptors(cause)], expected) |
| 478 | } |
| 479 | expectInterruptors(empty, []) |
| 480 | expectInterruptors(interruption, [FiberId.runtime(1, 0)]) |
| 481 | expectInterruptors( |
no test coverage detected
searching dependent graphs…