(options)
| 16 | |
| 17 | module.exports = class SpyProxy { |
| 18 | constructor(options) { |
| 19 | this.proxyServer = this.createProxyServer(options); |
| 20 | } |
| 21 | createProxyServer (options) { |
| 22 | options = options || {}; |
| 23 | this.weinewPort = options.weinewPort; |
nothing calls this directly
no test coverage detected