export type Capability = { available: boolean; executable?: string; reason?: string; }; export type TestingSnapshot = { frontendUrl?: string; adminUrl?: string; http: Capability; browser: Capability; diagnostics: string[]; }; export type TestingOptions = { frontendUrl?: string; adminUrl?: string; allowInsecureTls: boolean; };