()
| 13 | }); |
| 14 | |
| 15 | async function readData() { |
| 16 | console.log("Before Promise"); |
| 17 | // myPromise.then((resolvedValue) => console.log(resolvedValue)); |
| 18 | // console.log(await myPromise); |
| 19 | console.log(await myPromise.catch((err) => err)); |
| 20 | console.log("After Promise"); |
| 21 | } |
| 22 | |
| 23 | readData(); |
no outgoing calls
no test coverage detected