(id: string, delay: number)
| 1284 | |
| 1285 | // Create some basic effects with different delays |
| 1286 | const slow = (id: string, delay: number) => |
| 1287 | effected(function* () { |
| 1288 | const result = yield* compute(id, delay); |
| 1289 | return result; |
| 1290 | }); |
| 1291 | |
| 1292 | // Create nested structure: |
| 1293 | // outer = [ |
no test coverage detected