From 7c974d834b7c6f0e3a0cf1f3d06b97ffc436ec36 Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Mon, 27 Oct 2014 15:47:39 +0200 Subject: Fixes #116 - no star graph for a single node --- tests/test_sub_process.js | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 tests/test_sub_process.js (limited to 'tests/test_sub_process.js') diff --git a/tests/test_sub_process.js b/tests/test_sub_process.js deleted file mode 100644 index 95f5126e..00000000 --- a/tests/test_sub_process.js +++ /dev/null @@ -1,9 +0,0 @@ -var spawn = require('child_process').spawn; - -var ls = spawn('ls'); -ls.stdout.on('data', function (data) { - console.log('stdout ' + data.length); -}); -ls.on('close', function(code, signal) { - console.log('closed, ' + code + ', ' + signal); -}); -- cgit v1.3.1