()
| 161 | |
| 162 | |
| 163 | export function testOnoToJSON() { |
| 164 | let pojo = Ono.toJSON(err); |
| 165 | |
| 166 | // ErrorPOJO props |
| 167 | pojo.name = "string"; |
| 168 | pojo.message = "string"; |
| 169 | pojo.stack = "string"; |
| 170 | |
| 171 | let pojo2 = Ono.toJSON(errPOJO); |
| 172 | |
| 173 | // ErrorPOJO props |
| 174 | pojo2.name = "string"; |
| 175 | pojo2.message = "string"; |
| 176 | pojo2.stack = "string"; |
| 177 | } |
| 178 | |
| 179 | |
| 180 | export function testOnoSignatures() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…