()
| 107 | hello() {} |
| 108 | // See if the methods on Console.prototype are overridable. |
| 109 | log() { return 'overridden'; } |
| 110 | } |
| 111 | const myConsole = new MyConsole(process.stdout); |
| 112 | assert.strictEqual(typeof myConsole.hello, 'function'); |
no outgoing calls
no test coverage detected