We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66c82ad commit f5fd8a2Copy full SHA for f5fd8a2
test/parallel/test-tracing-no-crash.js
@@ -4,8 +4,8 @@ const assert = require('assert');
4
const { spawn } = require('child_process');
5
6
function CheckNoSignalAndErrorCodeOne(code, signal) {
7
- assert.strictEqual(null, signal);
8
- assert.strictEqual(1, code);
+ assert.strictEqual(signal, null);
+ assert.strictEqual(code, 1);
9
}
10
11
const child = spawn(process.execPath,
0 commit comments