summaryrefslogtreecommitdiff
path: root/deps/npm/test/tap/publish-access-unscoped.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/test/tap/publish-access-unscoped.js')
-rw-r--r--deps/npm/test/tap/publish-access-unscoped.js68
1 files changed, 30 insertions, 38 deletions
diff --git a/deps/npm/test/tap/publish-access-unscoped.js b/deps/npm/test/tap/publish-access-unscoped.js
index a2489e2bca..a7ea8e6694 100644
--- a/deps/npm/test/tap/publish-access-unscoped.js
+++ b/deps/npm/test/tap/publish-access-unscoped.js
@@ -2,8 +2,6 @@ var fs = require('fs')
var path = require('path')
var test = require('tap').test
-var mkdirp = require('mkdirp')
-var rimraf = require('rimraf')
var mr = require('npm-registry-mock')
var common = require('../common-tap')
var server
@@ -28,46 +26,40 @@ test('unscoped packages can be explicitly set as public', function (t) {
return true
}).put('/publish-access', true).reply(201, {ok: true})
- mkdirp(path.join(pkg, 'cache'), function () {
- fs.writeFile(
- path.join(pkg, 'package.json'),
- JSON.stringify({
- name: 'publish-access',
- version: '1.2.5',
- public: true
- }),
- 'ascii',
- function (er) {
- t.ifError(er, 'package file written')
- common.npm(
- [
- 'publish',
- '--access', 'public',
- '--cache', path.join(pkg, 'cache'),
- '--loglevel', 'silly',
- '--registry', common.registry
- ],
- {
- cwd: pkg
- },
- function (er) {
- t.ifError(er, 'published without error')
+ fs.writeFile(
+ path.join(pkg, 'package.json'),
+ JSON.stringify({
+ name: 'publish-access',
+ version: '1.2.5',
+ public: true
+ }),
+ 'ascii',
+ function (er) {
+ t.ifError(er, 'package file written')
+ common.npm(
+ [
+ 'publish',
+ '--access', 'public',
+ '--cache', common.cache,
+ '--loglevel', 'silly',
+ '--registry', common.registry
+ ],
+ {
+ cwd: pkg
+ },
+ function (er) {
+ t.ifError(er, 'published without error')
- server.done()
- t.end()
- }
- )
- }
- )
- })
+ server.done()
+ t.end()
+ }
+ )
+ }
+ )
})
test('cleanup', function (t) {
process.chdir(__dirname)
server.close()
- rimraf(pkg, function (er) {
- t.ifError(er)
-
- t.end()
- })
+ t.end()
})