mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
13 lines
426 B
PowerShell
13 lines
426 B
PowerShell
Describe "WinAppDriver" {
|
|
It "WinAppDriver directory exists" {
|
|
Test-Path -Path "${env:ProgramFiles(x86)}\Windows Application Driver" | Should -BeTrue
|
|
}
|
|
}
|
|
|
|
Describe "Developer Mode" {
|
|
It "Developer Mode is enabled" {
|
|
$path = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock";
|
|
Get-ItemProperty -Path $path | Select-Object -ExpandProperty "AllowDevelopmentWithoutDevLicense" | Should -Be 1
|
|
}
|
|
}
|