Commit 3e1b1dd missed a few files in test/parallel, this commit
rectifies that.
Only test/parallel/test-url.js still has a copyright header. I left
it in because the original author is neither an io.js contributor nor
a StrongLoop employee.
PR-URL: https://github.com/iojs/io.js/pull/527
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
5 lines
185 B
JavaScript
5 lines
185 B
JavaScript
var assert = require('assert');
|
|
|
|
var nativeProcess = require('process');
|
|
assert.strictEqual(nativeProcess, process,
|
|
'require("process") should return a reference to global process');
|