Wraps a `DeepnoteFile` as the `LoadedRunnableFile` the resolver consumes.
(file: DeepnoteFile, originalPath: string, format: RunnableFormat = 'deepnote')
| 52 | |
| 53 | /** Wraps a `DeepnoteFile` as the `LoadedRunnableFile` the resolver consumes. */ |
| 54 | function makeLoaded(file: DeepnoteFile, originalPath: string, format: RunnableFormat = 'deepnote'): LoadedRunnableFile { |
| 55 | return { file, originalPath, format, wasConverted: format !== 'deepnote' } |
| 56 | } |
| 57 | |
| 58 | describe('resolveAndComposeInit', () => { |
| 59 | let tempDir: string |