File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,24 @@ Describe 'Tests for MCP server' {
17
17
$mcp.StandardInput.WriteLine ($request )
18
18
$mcp.StandardInput.Flush ()
19
19
if (! $notify ) {
20
+ write-verbose - verbose " peeking stdout"
20
21
while ($mcp.StandardOutput.Peek () -eq -1 ) {
21
22
Start-Sleep - Milliseconds 100
22
23
}
24
+ <<<<<<< HEAD
23
25
while ($mcp.StandardError.Peek () -ne -1 ) {
24
26
$stderr = $mcp.StandardError.ReadLine ()
25
27
Write-Verbose - Verbose " MCP STDERR: $stderr "
26
28
}
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)
27
38
$stdout = $mcp.StandardOutput.ReadLine ()
28
39
return ($stdout | ConvertFrom-Json - Depth 30 )
29
40
}
You can’t perform that action at this time.
0 commit comments