(pod, port)
| 26 | } |
| 27 | |
| 28 | function startServer (pod, port) { |
| 29 | return new Promise((resolve) => { |
| 30 | pod.listen(port, () => { resolve() }) |
| 31 | }) |
| 32 | } |
| 33 | |
| 34 | describe('Payment Pointer Alice', () => { |
| 35 | let alice |
no outgoing calls
no test coverage detected