(e)
| 193 | () => (async e => { throw new MyError(e) })("boom!!"), MyError, "boom!!"); |
| 194 | assertThrowsAsync( |
| 195 | () => ({ async thrower(e) { throw new MyError(e); } }).thrower("boom!1!"), |
| 196 | MyError, "boom!1!"); |
| 197 | assertThrowsAsync( |
| 198 | () => AsyncFunction("msg", "throw new MyError(msg)")("boom!2!!"), |
no outgoing calls
no test coverage detected