(url: string)
| 1526 | |
| 1527 | it("should handle complex nested scenarios", async () => { |
| 1528 | const fetchData = (url: string) => |
| 1529 | effected(function* () { |
| 1530 | const data = yield* fetch(url); |
| 1531 | yield* log(`Fetched ${data} from ${url}`); |
| 1532 | return data; |
| 1533 | }); |
| 1534 | |
| 1535 | const logs: string[] = []; |
| 1536 | const urls = ["api/users", "api/posts", "api/comments"] as const; |
no test coverage detected