()
| 293 | // Custom iterable |
| 294 | const customIterable = { |
| 295 | *[Symbol.iterator]() { |
| 296 | yield Effected.of(42); |
| 297 | yield Effected.of("foo"); |
| 298 | yield Effected.of("bar"); |
| 299 | }, |
| 300 | }; |
| 301 | const program2 = Effected.all(customIterable); |
| 302 | expect(program2.runSync()).to(equal<(number | string)[]>); |