mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
11 lines
485 B
PowerShell
11 lines
485 B
PowerShell
####################################################################################
|
|
## File: Install-AzureCosmosDbEmulator.ps1
|
|
## Desc: Install Azure CosmosDb Emulator
|
|
####################################################################################
|
|
|
|
$InstallerName = "AzureCosmosDBEmulator.msi"
|
|
$InstallerUrl = "https://aka.ms/cosmosdb-emulator"
|
|
|
|
Install-Binary -Url $InstallerUrl -Name $InstallerName
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Azure Cosmos DB Emulator" |