()
| 51 | } |
| 52 | |
| 53 | async function teardown() { |
| 54 | return new Promise((acc, rej) => { |
| 55 | pool.end(err => { |
| 56 | if (err) rej(err); |
| 57 | else acc(); |
| 58 | }); |
| 59 | }); |
| 60 | } |
| 61 | |
| 62 | async function getItems() { |
| 63 | return new Promise((acc, rej) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…