(n: number)
| 7 | import * as Option from "effect/Option" |
| 8 | |
| 9 | const sum = (n: number): number => { |
| 10 | if (n < 0) { |
| 11 | return 0 |
| 12 | } |
| 13 | return n + sum(n - 1) |
| 14 | } |
| 15 | |
| 16 | describe("Effect", () => { |
| 17 | it("runSyncExit with async is a defect with stack", () => { |
no outgoing calls
no test coverage detected