Skip to content

Commit 274eb46

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
remove test tracing, expand tokio macro and use multithread
1 parent 72d39bb commit 274eb46

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

dsc/tests/dsc_mcp.tests.ps1

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,12 @@ Describe 'Tests for MCP server' {
1717
$mcp.StandardInput.WriteLine($request)
1818
$mcp.StandardInput.Flush()
1919
if (!$notify) {
20-
write-verbose -verbose "peeking stdout"
2120
while ($mcp.StandardOutput.Peek() -eq -1) {
2221
Start-Sleep -Milliseconds 100
2322
}
24-
<<<<<<< HEAD
2523
while ($mcp.StandardError.Peek() -ne -1) {
2624
$stderr = $mcp.StandardError.ReadLine()
27-
Write-Verbose -Verbose "MCP STDERR: $stderr"
2825
}
29-
||||||| parent of 5829321b (add test tracing)
30-
=======
31-
write-verbose -verbose "peeking stderr"
32-
while ($mcp.StandardError.Peek() -ne -1) {
33-
$stderr = $mcp.StandardError.ReadLine()
34-
Write-Verbose -Verbose "MCP STDERR: $stderr"
35-
}
36-
write-verbose -verbose "reading stdout"
37-
>>>>>>> 5829321b (add test tracing)
3826
$stdout = $mcp.StandardOutput.ReadLine()
3927
return ($stdout | ConvertFrom-Json -Depth 30)
4028
}

0 commit comments

Comments
 (0)