Skip to content

Commit

Permalink
test: refactor test-child-process-constructor
Browse files Browse the repository at this point in the history
Change all assert.equal() to use assert.strictEqual().

PR-URL: nodejs#10060
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Evan Lucas <[email protected]>
  • Loading branch information
kathytruong authored and addaleax committed Dec 8, 2016
1 parent f78b817 commit 76dda9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/parallel/test-child-process-constructor.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require('../common');
var assert = require('assert');
var child_process = require('child_process');
var ChildProcess = child_process.ChildProcess;
assert.equal(typeof ChildProcess, 'function');
assert.strictEqual(typeof ChildProcess, 'function');

// test that we can call spawn
var child = new ChildProcess();
Expand All @@ -15,11 +15,11 @@ child.spawn({
stdio: 'pipe'
});

assert.equal(child.hasOwnProperty('pid'), true);
assert.strictEqual(child.hasOwnProperty('pid'), true);

// try killing with invalid signal
assert.throws(function() {
child.kill('foo');
}, /Unknown signal: foo/);

assert.equal(child.kill(), true);
assert.strictEqual(child.kill(), true);

0 comments on commit 76dda9c

Please sign in to comment.