mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
10 lines
405 B
PowerShell
10 lines
405 B
PowerShell
####################################################################################
|
|
## File: Install-AzureCosmosDbEmulator.ps1
|
|
## Desc: Install Azure CosmosDb Emulator
|
|
####################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url "https://aka.ms/cosmosdb-emulator"
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Azure Cosmos DB Emulator"
|