We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 273327f commit 3847940Copy full SHA for 3847940
.github/workflows/test.yml
@@ -77,5 +77,5 @@ jobs:
77
shell: powershell
78
run: |
79
Start-Job -Init ([ScriptBlock]::Create("Set-Location '$pwd/build/install/bin'")) -ScriptBlock { .\simple_module.exe asdf 2>&1 > output.txt} | Wait-Job -Timeout 2 | Receive-Job
80
- if (-not $(Select-String -Pattern "wrong" -Path ./build/install/bin/output.txt)) { throw "Module did not start listening" }
+ if (-not $(Select-String -Pattern "Module listening" -Path ./build/install/bin/output.txt)) { throw "Module did not start listening" }
81
0 commit comments