(msg)
| 77 | f1 = loop.create_future() |
| 78 | |
| 79 | def to_raise(msg): |
| 80 | f1.set_exception(TypeError(msg)) |
| 81 | timeout_id0 = pm.eval("setTimeout")(to_raise, 100, "going to be there") |
| 82 | # `setTimeout` should return a `Timeout` instance wrapping a positive integer value |
| 83 | assert pm.eval("(t) => t instanceof setTimeout.Timeout")(timeout_id0) |
nothing calls this directly
no outgoing calls
no test coverage detected