1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-05 21:10:09 +02:00

update packages to latest version

This commit is contained in:
s2
2022-08-20 18:51:33 +02:00
parent 09663a35a5
commit 806ebf9a57
4513 changed files with 366205 additions and 92512 deletions

39
node_modules/npm/test/tap/404-private-registry.js generated vendored Normal file
View File

@@ -0,0 +1,39 @@
var test = require('tap').test
var path = require('path')
var common = require('../common-tap.js')
var mr = require('npm-registry-mock')
var server
var packageName = path.basename(__filename,'.js')
test('setup', function (t) {
mr({port: common.port, throwOnUnmatched: true}, function (err, s) {
t.ifError(err, 'registry mocked successfully')
server = s
t.end()
})
})
test('package names not mangled on error with non-root registry', function (t) {
common.npm(
[
'cache',
'add',
packageName + '@*'
],
{},
function (er, code, stdout, stderr) {
t.ifError(er, 'correctly handled 404')
t.equal(code, 1, 'exited with error')
t.match(stderr, packageName, 'should have package name in error')
t.end()
}
)
})
test('cleanup', function (t) {
t.pass('cleaned up')
server.done()
server.close()
t.end()
})