| 1 | import type { Stats } from 'mocha'; |
| 2 | |
| 3 | interface TestErr { |
| 4 | generatedMessage: boolean; |
| 5 | name: string; |
| 6 | code: string; |
| 7 | actual: string; |
| 8 | expected: string; |
| 9 | operator: string; |
| 10 | } |
| 11 | |
| 12 | interface NodeErr { |
| 13 | message: string; |
nothing calls this directly
no outgoing calls
no test coverage detected