We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
assert.strictEqual
1 parent 72fb05d commit b67cad1Copy full SHA for b67cad1
test/parallel/test-debug-port-from-cmdline.js
@@ -42,7 +42,7 @@ function assertOutputLines() {
42
'Debugger listening on 127.0.0.1:' + debugPort,
43
];
44
45
- assert.equal(outputLines.length, expectedLines.length);
+ assert.strictEqual(outputLines.length, expectedLines.length);
46
for (var i = 0; i < expectedLines.length; i++)
47
assert(expectedLines[i].includes(outputLines[i]));
48
}
0 commit comments