We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c390809 commit 68b8412Copy full SHA for 68b8412
test/fixtures/spawn-worker-with-copied-env.js
@@ -2,7 +2,7 @@
2
3
// This test is meant to be spawned with NODE_OPTIONS=--title=foo
4
const assert = require('assert');
5
-if (process.platform !== 'sunos') { // --title is unsupported on SmartOS.
+if (process.platform !== 'sunos' && process.platform !== 'os400') { // --title is unsupported on SmartOS and IBM i.
6
assert.strictEqual(process.title, 'foo');
7
}
8
0 commit comments