(mockApp: any)
| 15 | // Type helper to safely cast mock App to real App type |
| 16 | // @ts-ignore: Mock App type is compatible at runtime despite TypeScript warnings |
| 17 | const createMockApp = (mockApp: any): App => mockApp as unknown as App; |
| 18 | |
| 19 | // Use real libraries instead of mocks |
| 20 | import { format } from "date-fns"; |
no outgoing calls
no test coverage detected