(extensionPath: string)
| 862 | } |
| 863 | |
| 864 | async installExtension(extensionPath: string): Promise<string> { |
| 865 | const id = await this.browser.installExtension(extensionPath); |
| 866 | return id; |
| 867 | } |
| 868 | |
| 869 | async uninstallExtension(id: string): Promise<void> { |
| 870 | await this.browser.uninstallExtension(id); |
no outgoing calls
no test coverage detected