mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 20:40:07 +02:00
update packages to latest version
This commit is contained in:
58
node_modules/npm/test/tap/outdated-git.js
generated
vendored
Normal file
58
node_modules/npm/test/tap/outdated-git.js
generated
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
var path = require('path')
|
||||
|
||||
var test = require('tap').test
|
||||
var mkdirp = require('mkdirp')
|
||||
var fs = require("graceful-fs")
|
||||
var rimraf = require('rimraf')
|
||||
|
||||
var common = require('../common-tap.js')
|
||||
var npm = require('../../')
|
||||
|
||||
// config
|
||||
var pkg = path.resolve(__dirname, 'outdated-git')
|
||||
var cache = path.resolve(pkg, 'cache')
|
||||
var json = {
|
||||
name: 'outdated-git',
|
||||
author: 'Rocko Artischocko',
|
||||
description: 'fixture',
|
||||
version: '0.0.1',
|
||||
main: 'index.js',
|
||||
dependencies: {
|
||||
'foo-github': 'robertkowalski/foo',
|
||||
'foo-private': 'git://github.com/robertkowalski/foo-private.git',
|
||||
'foo-private-credentials': 'git://user:pass@github.com/robertkowalski/foo-private.git'
|
||||
}
|
||||
}
|
||||
|
||||
test('setup', function (t) {
|
||||
setup()
|
||||
t.end()
|
||||
})
|
||||
|
||||
test('discovers new versions in outdated', function (t) {
|
||||
process.chdir(pkg)
|
||||
t.plan(5)
|
||||
npm.load({cache: cache, registry: common.registry, loglevel: 'silent'}, function () {
|
||||
npm.commands.outdated([], function (er, d) {
|
||||
t.equal(d[0][3], 'git')
|
||||
t.equal(d[0][4], 'git')
|
||||
t.equal(d[0][5], 'github:robertkowalski/foo')
|
||||
t.equal(d[1][5], 'git://github.com/robertkowalski/foo-private.git')
|
||||
t.equal(d[2][5], 'git://user:pass@github.com/robertkowalski/foo-private.git')
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
test('cleanup', function (t) {
|
||||
cleanup()
|
||||
t.end()
|
||||
})
|
||||
|
||||
function setup () {
|
||||
mkdirp.sync(cache)
|
||||
fs.writeFileSync(path.join(pkg, 'package.json'), JSON.stringify(json, null, 2), 'utf8')
|
||||
}
|
||||
|
||||
function cleanup () {
|
||||
rimraf.sync(pkg)
|
||||
}
|
Reference in New Issue
Block a user