You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/powershell/engine/Help/HelpSystem.Tests.ps1
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -312,10 +312,6 @@ Describe "Get-Help should find help info within help files" -Tags @('CI') {
312
312
313
313
Describe "Get-Help should find pattern help files"-Tags "CI" {
314
314
315
-
# There is a bug specific to Travis CI that suspends the test if "get-help" is used to search pattern string. This doesn't repro locally.
316
-
# This occurs even if Unix system just returns "Directory.GetFiles(path, pattern);" as the windows' code does.
317
-
# Since there's currently no way to get the vm from Travis CI and the test PASSES locally on both Ubuntu and MacOS, excluding pattern test under Unix system.
318
-
319
315
BeforeAll {
320
316
$helpFile1="about_testCase1.help.txt"
321
317
$helpFile2="about_testCase.2.help.txt"
@@ -349,7 +345,7 @@ Describe "Get-Help should find pattern help files" -Tags "CI" {
349
345
@{command= {Get-Help about_testCas?.2*}; testname="test ?, * pattern with dot"; result="about_test2"}
350
346
)
351
347
352
-
It "Get-Help should find pattern help files - <testname>"-TestCases $testcases-Pending: (-not$IsWindows) {
348
+
It "Get-Help should find pattern help files - <testname>"-TestCases $testcases {
0 commit comments