(path: string)
| 300 | } |
| 301 | |
| 302 | async createFolder(path: string): Promise<TFolder> { |
| 303 | mockFileSystem.ensureFolderExists(path); |
| 304 | return new TFolder(path); |
| 305 | } |
| 306 | |
| 307 | getAbstractFileByPath(path: string): TAbstractFile | null { |
| 308 | const normalizedPath = mockFileSystem['normalizePath'](path); |
no test coverage detected