| 60 | |
| 61 | test("interfaces", () => { |
| 62 | interface MyInterface { |
| 63 | a: number; |
| 64 | } |
| 65 | // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion -- preserves the named interface; that's what this test exercises. |
| 66 | const data = { a: 123 } as MyInterface; |
| 67 | if (isEmpty(data)) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…