Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'test/tap/lifecycle.js')
-rw-r--r--test/tap/lifecycle.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/tap/lifecycle.js b/test/tap/lifecycle.js
index aa0efc526..1bd77c383 100644
--- a/test/tap/lifecycle.js
+++ b/test/tap/lifecycle.js
@@ -1,12 +1,12 @@
-var test = require("tap").test
-var npm = require("../../")
-var lifecycle = require("../../lib/utils/lifecycle")
+var test = require('tap').test
+var npm = require('../../')
+var lifecycle = require('../../lib/utils/lifecycle')
-test("lifecycle: make env correctly", function (t) {
+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.equal('Infinity', env.npm_config_enteente)
t.end()
})
})