()
| 9 | } |
| 10 | |
| 11 | export async function isInitialized(): Promise<boolean> { |
| 12 | const dir = await getDevCtxDir(); |
| 13 | return fs.existsSync(dir); |
| 14 | } |
| 15 | |
| 16 | export async function saveContext(entry: ContextEntry): Promise<string> { |
| 17 | const dir = await getDevCtxDir(); |
no test coverage detected