()
| 17 | import { createConvertAction } from './convert' |
| 18 | |
| 19 | async function createTempDir(): Promise<string> { |
| 20 | return fs.mkdtemp(join(os.tmpdir(), 'deepnote-convert-test-')) |
| 21 | } |
| 22 | |
| 23 | async function cleanupTempDir(dirPath: string): Promise<void> { |
| 24 | try { |