(version: string)
| 122 | } |
| 123 | |
| 124 | static isValidVersion(version: string): boolean { |
| 125 | return !!version.match(Constants.versionPattern); |
| 126 | } |
| 127 | |
| 128 | static async isHostedAgent(moduleContainerPath: string): Promise<boolean> { |
| 129 | const script = `Test-Path (Join-Path "${moduleContainerPath}" "az_*")`; |
no outgoing calls
no test coverage detected