()
| 31 | |
| 32 | // Helper to get the mocked crypto.randomUUID with reset function |
| 33 | function getMockedRandomUUID() { |
| 34 | return vi.mocked(crypto.randomUUID) as ReturnType<typeof vi.mocked<typeof crypto.randomUUID>> & { |
| 35 | __resetCounter: () => void |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | describe('convertIpynbFileToDeepnoteFile', () => { |
| 40 | let tempDir: string |
no outgoing calls
no test coverage detected