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/publish-config.js')
-rw-r--r--test/tap/publish-config.js52
1 files changed, 26 insertions, 26 deletions
diff --git a/test/tap/publish-config.js b/test/tap/publish-config.js
index 1d063535b..57070f78b 100644
--- a/test/tap/publish-config.js
+++ b/test/tap/publish-config.js
@@ -1,37 +1,37 @@
-var common = require("../common-tap.js")
-var test = require("tap").test
-var fs = require("fs")
-var osenv = require("osenv")
-var pkg = process.env.npm_config_tmp || "/tmp"
-pkg += "/npm-test-publish-config"
+var common = require('../common-tap.js')
+var test = require('tap').test
+var fs = require('fs')
+var osenv = require('osenv')
+var pkg = process.env.npm_config_tmp || '/tmp'
+pkg += '/npm-test-publish-config'
-require("mkdirp").sync(pkg)
+require('mkdirp').sync(pkg)
-fs.writeFileSync(pkg + "/package.json", JSON.stringify({
- name: "npm-test-publish-config",
- version: "1.2.3",
+fs.writeFileSync(pkg + '/package.json', JSON.stringify({
+ name: 'npm-test-publish-config',
+ version: '1.2.3',
publishConfig: { registry: common.registry }
-}), "utf8")
+}), 'utf8')
-fs.writeFileSync(pkg + "/fixture_npmrc",
- "//localhost:1337/:email = fancy@feast.net\n" +
- "//localhost:1337/:username = fancy\n" +
- "//localhost:1337/:_password = " + new Buffer("feast").toString("base64") + "\n" +
- "registry = http://localhost:1337/")
+fs.writeFileSync(pkg + '/fixture_npmrc',
+ '//localhost:1337/:email = fancy@feast.net\n' +
+ '//localhost:1337/:username = fancy\n' +
+ '//localhost:1337/:_password = ' + new Buffer('feast').toString('base64') + '\n' +
+ 'registry = http://localhost:1337/')
test(function (t) {
var child
t.plan(4)
- require("http").createServer(function (req, res) {
- t.pass("got request on the fakey fake registry")
+ require('http').createServer(function (req, res) {
+ t.pass('got request on the fakey fake registry')
this.close()
res.statusCode = 500
res.end(JSON.stringify({
- error: "sshhh. naptime nao. \\^O^/ <(YAWWWWN!)"
+ error: 'sshhh. naptime nao. \\^O^/ <(YAWWWWN!)'
}))
child.kill('SIGHUP')
}).listen(common.port, function () {
- t.pass("server is listening")
+ t.pass('server is listening')
// don't much care about listening to the child's results
// just wanna make sure it hits the server we just set up.
@@ -40,20 +40,20 @@ test(function (t) {
// itself functions normally.
//
// Make sure that we don't sit around waiting for lock files
- child = common.npm(["publish", "--userconfig=" + pkg + "/fixture_npmrc"], {
+ child = common.npm(['publish', '--userconfig=' + pkg + '/fixture_npmrc'], {
cwd: pkg,
- stdio: "inherit",
+ stdio: 'inherit',
env: {
- "npm_config_cache_lock_stale": 1000,
- "npm_config_cache_lock_wait": 1000,
+ 'npm_config_cache_lock_stale': 1000,
+ 'npm_config_cache_lock_wait': 1000,
HOME: process.env.HOME,
Path: process.env.PATH,
PATH: process.env.PATH,
USERPROFILE: osenv.home()
}
}, function (err, code) {
- t.ifError(err, "publish command finished successfully")
- t.notOk(code, "npm install exited with code 0")
+ t.ifError(err, 'publish command finished successfully')
+ t.notOk(code, 'npm install exited with code 0')
})
})
})