mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

PR-URL: https://github.com/nodejs/node/pull/8622 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com> Reviewed-By: Jackson Tian <shvyo1987@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
25 lines
715 B
JavaScript
25 lines
715 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
// check for existence
|
|
assert(process.hasOwnProperty('config'));
|
|
|
|
// ensure that `process.config` is an Object
|
|
assert.strictEqual(Object(process.config), process.config);
|
|
|
|
var configPath = path.resolve(__dirname, '..', '..', 'config.gypi');
|
|
var config = fs.readFileSync(configPath, 'utf8');
|
|
|
|
// clean up comment at the first line
|
|
config = config.split('\n').slice(1).join('\n').replace(/'/g, '"');
|
|
config = JSON.parse(config, function(key, value) {
|
|
if (value === 'true') return true;
|
|
if (value === 'false') return false;
|
|
return value;
|
|
});
|
|
|
|
assert.deepStrictEqual(config, process.config);
|