mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
test: optionally set common.PORT via env variable
This commit is contained in:
committed by
isaacs
parent
17c6fe2e22
commit
17a812618d
@@ -26,7 +26,7 @@ exports.testDir = path.dirname(__filename);
|
|||||||
exports.fixturesDir = path.join(exports.testDir, 'fixtures');
|
exports.fixturesDir = path.join(exports.testDir, 'fixtures');
|
||||||
exports.libDir = path.join(exports.testDir, '../lib');
|
exports.libDir = path.join(exports.testDir, '../lib');
|
||||||
exports.tmpDir = path.join(exports.testDir, 'tmp');
|
exports.tmpDir = path.join(exports.testDir, 'tmp');
|
||||||
exports.PORT = 12346;
|
exports.PORT = +process.env.NODE_COMMON_PORT || 12346;
|
||||||
|
|
||||||
if (process.platform === 'win32') {
|
if (process.platform === 'win32') {
|
||||||
exports.PIPE = '\\\\.\\pipe\\libuv-test';
|
exports.PIPE = '\\\\.\\pipe\\libuv-test';
|
||||||
|
|||||||
Reference in New Issue
Block a user