(info, callback)
| 19 | } |
| 20 | |
| 21 | log(info, callback) { |
| 22 | setImmediate(() => { |
| 23 | this.emit('logged', info); |
| 24 | }); |
| 25 | |
| 26 | // Perform the writing to the remote service |
| 27 | |
| 28 | callback(); |
| 29 | } |
| 30 | }; |
| 31 | |
| 32 | const transport = new CustomTransport(); |
no outgoing calls
no test coverage detected