()
| 90 | * Generates a random cosmos-themed workspace name |
| 91 | */ |
| 92 | export function generateWorkspaceName(): string { |
| 93 | return randomItem(WORKSPACE_NOUNS) |
| 94 | } |
| 95 | |
| 96 | async function fetchWorkspaceFolders(workspaceId: string): Promise<FolderApi[]> { |
| 97 | const { folders } = await requestJson(listFoldersContract, { |
nothing calls this directly
no test coverage detected