()
| 29 | } |
| 30 | |
| 31 | async function teardown() { |
| 32 | return new Promise((acc, rej) => { |
| 33 | db.close(err => { |
| 34 | if (err) rej(err); |
| 35 | else acc(); |
| 36 | }); |
| 37 | }); |
| 38 | } |
| 39 | |
| 40 | async function getItems() { |
| 41 | return new Promise((acc, rej) => { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…