()
| 157 | |
| 158 | it('handles toString() method defined inherited in object', () => { |
| 159 | class Class1 { toString() { return 'classFromMethod'; } } |
| 160 | class Class2 extends Class1 {} |
| 161 | |
| 162 | assert.equal(classNamesBound(new Class2()), 'classFromMethod'); |
no outgoing calls
no test coverage detected