/** * Returns Promise that never resolves ("hanging"). */ export async function pHang(): Promise { return await new Promise(() => void 0) }