summaryrefslogtreecommitdiff
path: root/tests/test_sub_process.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_sub_process.js')
-rw-r--r--tests/test_sub_process.js9
1 files changed, 0 insertions, 9 deletions
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);
-});