| 63 | MockNotification; |
| 64 | |
| 65 | interface TestApi { |
| 66 | tray: { updateColor: (n?: number) => void }; |
| 67 | openExternalLink: (u: string, f: boolean) => void; |
| 68 | app: { version: () => Promise<string>; show?: () => void; hide?: () => void }; |
| 69 | onSystemThemeUpdate: (cb: (t: string) => void) => void; |
| 70 | raiseNativeNotification: (t: string, b: string, u?: string) => unknown; |
| 71 | } |
| 72 | |
| 73 | describe('preload/index', () => { |
| 74 | beforeEach(() => { |
nothing calls this directly
no outgoing calls
no test coverage detected