()
| 202 | const emitConsole2 = defineHandlerFor<Emit>().with((self) => self.resume("emit", println)); |
| 203 | |
| 204 | const eHelloConsole2 = () => |
| 205 | effected(function* () { |
| 206 | yield* eHello().with(emitConsole2); |
| 207 | }); |
| 208 | |
| 209 | logs.length = 0; |
| 210 | eHelloConsole2() |
no test coverage detected