Skip to content

Commit 40002ed

Browse files
sivaprsitaloacasas
authored andcommitted
test: refactor the code in test-util-debug.js
* use const and let instead of var * use assert.strictEqual instead of assert.equal * use arrow functions * removed unwanted console log PR-URL: nodejs#10531 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Gibson Fahnestock <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
1 parent b7745e5 commit 40002ed

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

test/sequential/test-util-debug.js

+11-12
Original file line numberDiff line numberDiff line change
@@ -17,44 +17,43 @@ function parent() {
1717
}
1818

1919
function test(environ, shouldWrite) {
20-
var expectErr = '';
20+
let expectErr = '';
2121
if (shouldWrite) {
2222
expectErr = 'TUD %PID%: this { is: \'a\' } /debugging/\n' +
2323
'TUD %PID%: number=1234 string=asdf obj={"foo":"bar"}\n';
2424
}
25-
var expectOut = 'ok\n';
25+
const expectOut = 'ok\n';
2626

2727
const spawn = require('child_process').spawn;
28-
var child = spawn(process.execPath, [__filename, 'child'], {
28+
const child = spawn(process.execPath, [__filename, 'child'], {
2929
env: Object.assign(process.env, { NODE_DEBUG: environ })
3030
});
3131

3232
expectErr = expectErr.split('%PID%').join(child.pid);
3333

34-
var err = '';
34+
let err = '';
3535
child.stderr.setEncoding('utf8');
36-
child.stderr.on('data', function(c) {
36+
child.stderr.on('data', (c) => {
3737
err += c;
3838
});
3939

40-
var out = '';
40+
let out = '';
4141
child.stdout.setEncoding('utf8');
42-
child.stdout.on('data', function(c) {
42+
child.stdout.on('data', (c) => {
4343
out += c;
4444
});
4545

46-
child.on('close', common.mustCall(function(c) {
46+
child.on('close', common.mustCall((c) => {
4747
assert(!c);
48-
assert.equal(err, expectErr);
49-
assert.equal(out, expectOut);
50-
console.log('ok %j %j', environ, shouldWrite);
48+
assert.strictEqual(err, expectErr);
49+
assert.strictEqual(out, expectOut);
5150
}));
5251
}
5352

5453

5554
function child() {
5655
const util = require('util');
57-
var debug = util.debuglog('tud');
56+
const debug = util.debuglog('tud');
5857
debug('this', { is: 'a' }, /debugging/);
5958
debug('number=%d string=%s obj=%j', 1234, 'asdf', { foo: 'bar' });
6059
console.log('ok');

0 commit comments

Comments
 (0)