[macOS] enable automationmode without authentication (#5417)

This commit is contained in:
Aleksandr Chebotov
2022-04-20 18:25:58 +03:00
committed by GitHub
parent e1b218a38a
commit 961aac86a3
4 changed files with 47 additions and 1 deletions
+6
View File
@@ -54,3 +54,9 @@ Describe "Open windows" {
$openWindows.Split(",").Trim() | Where-Object { $_ -notmatch "NotificationCenter" } | Should -BeNullOrEmpty
}
}
Describe "AutomationModeTool" {
It "Does not require user authentication" -Skip:(-not $os.IsMonterey) {
automationmodetool | Out-String | Should -Match "DOES NOT REQUIRE"
}
}