mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
11 lines
497 B
PowerShell
11 lines
497 B
PowerShell
####################################################################################
|
|
## File: Install-AzureCosmosDbEmulator.ps1
|
|
## Desc: Install Azure CosmosDb Emulator
|
|
####################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url "https://aka.ms/cosmosdb-emulator" `
|
|
-ExpectedSHA256Sum "DB9D5E496C5FDAE17C12C03385D2BAC973DA61C280023D9FDC9A6020220BEE41"
|
|
|
|
Invoke-PesterTests -TestFile "Tools" -TestName "Azure Cosmos DB Emulator"
|