()
| 35 | // ); |
| 36 | |
| 37 | async function getData() { |
| 38 | let users = []; |
| 39 | if (users.length > 0) { |
| 40 | return "Users Found"; |
| 41 | } else { |
| 42 | throw new Error("No Users Found"); |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | console.log(getData()); |
| 47 |
no outgoing calls
no test coverage detected