mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 08:52:55 +00:00

* Check SHA before using files from cache * adduser: allow change of the saved password * Make `npm install` respect `config.unicode` * Fix lifecycle to pass `Infinity` for config env value * Don't return 0 exit code on invalid command * cache: Handle 404s and other HTTP errors as errors * bump tap dep, make tests stderr a bit quieter * Resolve ~ in path configs to env.HOME * Include npm version in default user-agent conf * npm init: Use ISC as default license, use save-prefix for deps * Many test and doc fixes
13 lines
337 B
JavaScript
13 lines
337 B
JavaScript
var test = require("tap").test
|
|
var npm = require('../../')
|
|
var lifecycle = require('../../lib/utils/lifecycle')
|
|
|
|
test("lifecycle: make env correctly", function (t) {
|
|
npm.load({enteente: Infinity}, function() {
|
|
var env = lifecycle.makeEnv({}, null, process.env)
|
|
|
|
t.equal('Infinity', env.npm_config_enteente)
|
|
t.end()
|
|
})
|
|
})
|