(appRoot: string)
| 15 | export const APP_NAME = 'Capacitor CLI Test'; |
| 16 | |
| 17 | export async function makeConfig(appRoot: string): Promise<Config> { |
| 18 | process.chdir(appRoot); |
| 19 | const config = await loadConfig(); |
| 20 | process.chdir(cwd); |
| 21 | return config; |
| 22 | } |
| 23 | |
| 24 | export async function run(appRoot: string, capCommand: string): Promise<string> { |
| 25 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected