()
| 181 | |
| 182 | test("3.4.4. Abstracting Handlers", () => { |
| 183 | const eHello = () => |
| 184 | effected(function* () { |
| 185 | yield* emit("hello"); |
| 186 | yield* emit("world"); |
| 187 | }); |
| 188 | |
| 189 | const eHelloConsole = () => |
| 190 | effected(function* () { |
no test coverage detected