()
| 30 | |
| 31 | |
| 32 | const sleep = async ()=>{ |
| 33 | return new Promise((resolve, reject)=>{ |
| 34 | setTimeout(() => { |
| 35 | resolve(45) |
| 36 | }, 1000); |
| 37 | }) |
| 38 | } |
| 39 | |
| 40 | const sum = async (a, b, c)=>{ |
| 41 | return a+b+c |
nothing calls this directly
no outgoing calls
no test coverage detected