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/outdated-private.js')
-rw-r--r--test/tap/outdated-private.js112
1 files changed, 56 insertions, 56 deletions
diff --git a/test/tap/outdated-private.js b/test/tap/outdated-private.js
index f7fb47587..1d5e460c6 100644
--- a/test/tap/outdated-private.js
+++ b/test/tap/outdated-private.js
@@ -1,79 +1,79 @@
-var common = require("../common-tap.js")
-var test = require("tap").test
-var npm = require("../../")
-var rimraf = require("rimraf")
-var path = require("path")
-var mr = require("npm-registry-mock")
-var osenv = require("osenv")
-var mkdirp = require("mkdirp")
-var fs = require("graceful-fs")
+var common = require('../common-tap.js')
+var test = require('tap').test
+var npm = require('../../')
+var rimraf = require('rimraf')
+var path = require('path')
+var mr = require('npm-registry-mock')
+var osenv = require('osenv')
+var mkdirp = require('mkdirp')
+var fs = require('graceful-fs')
-var pkg = path.resolve(__dirname, "outdated-private")
-var pkgLocalPrivate = path.resolve(pkg, "local-private")
-var pkgScopedLocalPrivate = path.resolve(pkg, "another-local-private")
-var pkgLocalUnderscore = path.resolve(pkg, "underscore")
+var pkg = path.resolve(__dirname, 'outdated-private')
+var pkgLocalPrivate = path.resolve(pkg, 'local-private')
+var pkgScopedLocalPrivate = path.resolve(pkg, 'another-local-private')
+var pkgLocalUnderscore = path.resolve(pkg, 'underscore')
var pjParent = JSON.stringify({
- name : "outdated-private",
- version : "1.0.0",
- dependencies : {
- "local-private" : "file:local-private",
- "@scoped/another-local-private" : "file:another-local-private",
- "underscore" : "file:underscore"
+ name: 'outdated-private',
+ version: '1.0.0',
+ dependencies: {
+ 'local-private': 'file:local-private',
+ '@scoped/another-local-private': 'file:another-local-private',
+ 'underscore': 'file:underscore'
}
-}, null, 2) + "\n"
+}, null, 2) + '\n'
var pjLocalPrivate = JSON.stringify({
- name : "local-private",
- version : "1.0.0",
- private : true
-}, null, 2) + "\n"
+ name: 'local-private',
+ version: '1.0.0',
+ 'private': true
+}, null, 2) + '\n'
var pjLocalPrivateBumped = JSON.stringify({
- name : "local-private",
- version : "1.1.0",
- private : true
-}, null, 2) + "\n"
+ name: 'local-private',
+ version: '1.1.0',
+ 'private': true
+}, null, 2) + '\n'
var pjScopedLocalPrivate = JSON.stringify({
- name : "@scoped/another-local-private",
- version : "1.0.0",
- private : true
-}, null, 2) + "\n"
+ name: '@scoped/another-local-private',
+ version: '1.0.0',
+ 'private': true
+}, null, 2) + '\n'
var pjLocalUnderscore = JSON.stringify({
- name : "underscore",
- version : "1.3.1"
-}, null, 2) + "\n"
+ name: 'underscore',
+ version: '1.3.1'
+}, null, 2) + '\n'
-test("setup", function (t) {
+test('setup', function (t) {
bootstrap()
t.end()
})
-test("outdated ignores private modules", function (t) {
+test('outdated ignores private modules', function (t) {
t.plan(3)
process.chdir(pkg)
- mr({ port : common.port }, function (err, s) {
+ mr({ port: common.port }, function (er, s) {
npm.load(
{
- loglevel : "silent",
- parseable : true,
- registry : common.registry
+ loglevel: 'silent',
+ parseable: true,
+ registry: common.registry
},
function () {
- npm.install(".", function (err) {
- t.ifError(err, "install success")
+ npm.install('.', function (err) {
+ t.ifError(err, 'install success')
bumpLocalPrivate()
npm.outdated(function (er, d) {
- t.ifError(er, "outdated success")
+ t.ifError(er, 'outdated success')
t.deepEqual(d, [[
- path.resolve(__dirname, "outdated-private"),
- "underscore",
- "1.3.1",
- "1.5.1",
- "1.5.1",
- "underscore@1.5.1",
+ path.resolve(__dirname, 'outdated-private'),
+ 'underscore',
+ '1.3.1',
+ '1.5.1',
+ '1.5.1',
+ 'underscore@1.5.1',
null
]])
s.close()
@@ -84,27 +84,27 @@ test("outdated ignores private modules", function (t) {
})
})
-test("cleanup", function (t) {
+test('cleanup', function (t) {
cleanup()
t.end()
})
function bootstrap () {
mkdirp.sync(pkg)
- fs.writeFileSync(path.resolve(pkg, "package.json"), pjParent)
+ fs.writeFileSync(path.resolve(pkg, 'package.json'), pjParent)
mkdirp.sync(pkgLocalPrivate)
- fs.writeFileSync(path.resolve(pkgLocalPrivate, "package.json"), pjLocalPrivate)
+ fs.writeFileSync(path.resolve(pkgLocalPrivate, 'package.json'), pjLocalPrivate)
mkdirp.sync(pkgScopedLocalPrivate)
- fs.writeFileSync(path.resolve(pkgScopedLocalPrivate, "package.json"), pjScopedLocalPrivate)
+ fs.writeFileSync(path.resolve(pkgScopedLocalPrivate, 'package.json'), pjScopedLocalPrivate)
mkdirp.sync(pkgLocalUnderscore)
- fs.writeFileSync(path.resolve(pkgLocalUnderscore, "package.json"), pjLocalUnderscore)
+ fs.writeFileSync(path.resolve(pkgLocalUnderscore, 'package.json'), pjLocalUnderscore)
}
function bumpLocalPrivate () {
- fs.writeFileSync(path.resolve(pkgLocalPrivate, "package.json"), pjLocalPrivateBumped)
+ fs.writeFileSync(path.resolve(pkgLocalPrivate, 'package.json'), pjLocalPrivateBumped)
}
function cleanup () {