()
| 12 | import { capabilityCovers } from './types'; |
| 13 | |
| 14 | export function defaultAllowlistPath(): string { |
| 15 | return process.env.GSTACK_IOS_ALLOWLIST_PATH |
| 16 | ?? join(homedir(), '.gstack', 'ios-qa-allowlist.json'); |
| 17 | } |
| 18 | |
| 19 | export async function loadAllowlist(path: string = defaultAllowlistPath()): Promise<Allowlist> { |
| 20 | let raw: string; |
no outgoing calls
no test coverage detected