Skip to content

Commit

Permalink
test: replace console.log() with debuglog()
Browse files Browse the repository at this point in the history
  • Loading branch information
juanarbol committed Mar 30, 2020
1 parent cd1db2d commit 79d3d95
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/parallel/test-process-exit-code.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
'use strict';
require('../common');
const assert = require('assert');
const debug = require('util').debuglog('test');

const testCases = require('../fixtures/process-exit-code-cases');

Expand All @@ -30,7 +31,7 @@ if (!process.argv[2]) {
} else {
const i = parseInt(process.argv[2]);
if (Number.isNaN(i)) {
console.log('Invalid test case index');
debug('Invalid test case index');
process.exit(100);
return;
}
Expand All @@ -48,7 +49,7 @@ function parent() {
assert.strictEqual(
code, exit,
`wrong exit for ${arg}-${name}\nexpected:${exit} but got:${code}`);
console.log(`ok - ${arg} exited with ${exit}`);
debug(`ok - ${arg} exited with ${exit}`);
});
};

Expand Down

0 comments on commit 79d3d95

Please sign in to comment.