summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npm-registry-client/test/publish-scoped.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/npm-registry-client/test/publish-scoped.js')
-rw-r--r--deps/npm/node_modules/npm-registry-client/test/publish-scoped.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/deps/npm/node_modules/npm-registry-client/test/publish-scoped.js b/deps/npm/node_modules/npm-registry-client/test/publish-scoped.js
index 7758c3c12b..347364ea99 100644
--- a/deps/npm/node_modules/npm-registry-client/test/publish-scoped.js
+++ b/deps/npm/node_modules/npm-registry-client/test/publish-scoped.js
@@ -19,7 +19,7 @@ tap.test('publish', function (t) {
// not really a tarball, but doesn't matter
var bodyPath = require.resolve('../package.json')
var tarball = fs.createReadStream(bodyPath)
- var pd = fs.readFileSync(bodyPath, 'base64')
+ var pd = fs.readFileSync(bodyPath)
var pkg = require('../package.json')
pkg.name = '@npm/npm-registry-client'
@@ -41,8 +41,8 @@ tap.test('publish', function (t) {
t.same(o.maintainers, [ { name: 'username', email: 'ogd@aoaioxxysz.net' } ])
t.same(o.maintainers, o.versions[pkg.version].maintainers)
var att = o._attachments[ pkg.name + '-' + pkg.version + '.tgz' ]
- t.same(att.data, pd)
- var hash = crypto.createHash('sha1').update(pd, 'base64').digest('hex')
+ t.same(att.data, pd.toString('base64'))
+ var hash = crypto.createHash('sha1').update(pd).digest('hex')
t.equal(o.versions[pkg.version].dist.shasum, hash)
res.statusCode = 201
res.json({ created: true })
@@ -58,6 +58,7 @@ tap.test('publish', function (t) {
client.publish(common.registry, params, function (er, data) {
if (er) throw er
t.deepEqual(data, { created: true })
+ server.close()
t.end()
})
})