()
| 4 | describe("bind", () => { |
| 5 | it("tags a handler with serializable args", () => { |
| 6 | const h = () => {}; |
| 7 | const b = bind(h, { flightId: "x1" }); |
| 8 | expect(isBound(b)).toBe(true); |
| 9 | expect(getBoundArgs(b)).toEqual({ flightId: "x1" }); |
no outgoing calls
no test coverage detected