From b866a96cfacf37bf40a9fd7bab6e56868e3c0800 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 12 Jun 2012 22:39:55 +0200 Subject: [PATCH] test-child-process-kill: make it pass on windows The test would fail if the child process writes anything to the stdout. This doesn't happen on unix, since `cat` is spawned. However, on Windows `cmd` is started, which *does* write stuff to it's stdout. This meanlingless assert is now removed. --- test/simple/test-child-process-kill.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/simple/test-child-process-kill.js b/test/simple/test-child-process-kill.js index 7bb57a5e17..08a0185d33 100644 --- a/test/simple/test-child-process-kill.js +++ b/test/simple/test-child-process-kill.js @@ -37,10 +37,6 @@ var gotStderrEOF = false; var cat = spawn(is_windows ? 'cmd' : 'cat'); -cat.stdout.on('data', function(chunk) { - assert.ok(false); -}); - cat.stdout.on('end', function() { gotStdoutEOF = true; });