Browse Source

test: strictEqual in test-beforeexit-event.js

PR-URL: https://github.com/nodejs/node/pull/10004
Reviewed-by: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
v4.x
CodeTheInternet 8 years ago
committed by Myles Borins
parent
commit
f670b05603
  1. 4
      test/parallel/test-beforeexit-event.js

4
test/parallel/test-beforeexit-event.js

@ -37,6 +37,6 @@ function tryListen() {
}
process.on('exit', function() {
assert.equal(4, deaths);
assert.equal(3, revivals);
assert.strictEqual(4, deaths);
assert.strictEqual(3, revivals);
});

Loading…
Cancel
Save