(context: ExtensionContext)
| 2 | import { getSettingsDirectoryPath } from "./storage" |
| 3 | |
| 4 | export async function ensureSettingsDirectoryExists(context: ExtensionContext): Promise<string> { |
| 5 | // getSettingsDirectoryPath already handles the custom storage path setting |
| 6 | return await getSettingsDirectoryPath(context.globalStorageUri.fsPath) |
| 7 | } |
no test coverage detected