(cfg)
| 8 | class LocalGateway extends Gateway { |
| 9 | |
| 10 | constructor (cfg) { |
| 11 | cfg = cfg || {}; |
| 12 | cfg.name = 'LocalGateway'; |
| 13 | cfg.defaultTimeout = 120000; |
| 14 | super(cfg); |
| 15 | this._maxResultLogLength = 128; |
| 16 | } |
| 17 | |
| 18 | formatName (name) { |
| 19 | return chalk.grey(`[${chalk.green(this.name)}]`); |
nothing calls this directly
no outgoing calls
no test coverage detected