(url: string)
| 328 | |
| 329 | it("should handle complex nested scenarios", async () => { |
| 330 | const fetchData = (url: string) => |
| 331 | effected(function* () { |
| 332 | const data = yield* fetch(url); |
| 333 | yield* log(`Fetched ${data} from ${url}`); |
| 334 | return data; |
| 335 | }); |
| 336 | |
| 337 | const urls = ["api/users", "api/posts", "api/comments"] as const; |
| 338 |
no test coverage detected