Skip to content

Commit 199113c

Browse files
danielelisiMylesBorins
authored andcommitted
test: add NODE_UNIQUE_ID value to err message
PR-URL: #15914 Reviewed-By: Daijiro Wachi <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 1aac70f commit 199113c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/parallel/test-cluster-basic.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ const assert = require('assert');
55
const cluster = require('cluster');
66

77
assert.strictEqual('NODE_UNIQUE_ID' in process.env, false,
8-
'NODE_UNIQUE_ID should be removed on startup');
8+
`NODE_UNIQUE_ID (${process.env.NODE_UNIQUE_ID})` +
9+
'should be removed on startup');
910

1011
function forEach(obj, fn) {
1112
Object.keys(obj).forEach((name, index) => {

0 commit comments

Comments
 (0)