()
| 36 | |
| 37 | it("can be called with the `new` operator with args", () => { |
| 38 | function newErrorWithParams () { |
| 39 | return new ono("Testing", 1, "2", "3"); // eslint-disable-line new-cap |
| 40 | } |
| 41 | |
| 42 | let err = newErrorWithParams(); |
| 43 |
no test coverage detected
searching dependent graphs…