Skip to content

Commit 440d9c8

Browse files
theturtle32claude
andcommitted
Remove debug console.log from start-echo-server
Remove leftover debug statement that was printing the echo-server path during test execution, causing stdout noise in test output. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 05a8397 commit 440d9c8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/shared/start-echo-server.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ function startEchoServer(outputStream, callback) {
1010
}
1111

1212
const path = require('path').join(__dirname + '/../scripts/echo-server.js');
13-
14-
console.log(path);
15-
13+
1614
let echoServer = require('child_process').spawn('node', [ path ]);
1715

1816
let state = 'starting';

0 commit comments

Comments
 (0)