diff options
author | malen <malenesok007@yahoo.com> | 2016-12-01 08:54:06 -0800 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2016-12-24 06:28:50 -0800 |
commit | ff88a5a25bc77f5b9e6cae9eda238e935f656100 (patch) | |
tree | 7662395b243102d2673b6ae70807f2956bd6bc5e /test/parallel/test-child-process-ipc.js | |
parent | 5dc44874c319f1a91d53c9e8857bc2c63eea3827 (diff) | |
download | node-new-ff88a5a25bc77f5b9e6cae9eda238e935f656100.tar.gz |
test: refactor test-child-process-ipc
Change var to const or let.
Change assert.equal() to assert.strictEqual().
PR-URL: https://github.com/nodejs/node/pull/9990
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
Diffstat (limited to 'test/parallel/test-child-process-ipc.js')
-rw-r--r-- | test/parallel/test-child-process-ipc.js | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/test/parallel/test-child-process-ipc.js b/test/parallel/test-child-process-ipc.js index 7d0447569f..cbaa270f5e 100644 --- a/test/parallel/test-child-process-ipc.js +++ b/test/parallel/test-child-process-ipc.js @@ -1,17 +1,18 @@ 'use strict'; -var common = require('../common'); -var assert = require('assert'); -var spawn = require('child_process').spawn; +const common = require('../common'); +const assert = require('assert'); -var path = require('path'); +const spawn = require('child_process').spawn; -var sub = path.join(common.fixturesDir, 'echo.js'); +const path = require('path'); -var gotHelloWorld = false; -var gotEcho = false; +const sub = path.join(common.fixturesDir, 'echo.js'); -var child = spawn(process.argv[0], [sub]); +let gotHelloWorld = false; +let gotEcho = false; + +const child = spawn(process.argv[0], [sub]); child.stderr.on('data', function(data) { console.log('parent stderr: ' + data); @@ -23,7 +24,7 @@ child.stdout.on('data', function(data) { console.log('child said: ' + JSON.stringify(data)); if (!gotHelloWorld) { console.error('testing for hello world'); - assert.equal('hello world\r\n', data); + assert.strictEqual('hello world\r\n', data); gotHelloWorld = true; console.error('writing echo me'); child.stdin.write('echo me\r\n'); |