| 2 | import { waitForUser } from './utils'; |
| 3 | |
| 4 | export interface UserInterface { |
| 5 | getWindowsEncryptionPassword(): Promise<string>; |
| 6 | warnChromeOnLinuxWithoutCertutil(): Promise<void>; |
| 7 | closeFirefoxBeforeContinuing(): Promise<void>; |
| 8 | startFirefoxWizard(certificateHost: string): Promise<void>; |
| 9 | firefoxWizardPromptPage(certificateURL: string): Promise<string>; |
| 10 | waitForFirefoxWizard(): Promise<void>; |
| 11 | } |
| 12 | |
| 13 | const DefaultUI: UserInterface = { |
| 14 | async getWindowsEncryptionPassword() { |
no outgoing calls
no test coverage detected
searching dependent graphs…