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:
32
node_modules/npm/test/tap/nerf-dart.js
generated
vendored
Normal file
32
node_modules/npm/test/tap/nerf-dart.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// taken from https://raw.githubusercontent.com/indexzero/npm/bd3cad01fbd3ab481d2f5da441b9eead16029123/test/tap/config-nerf-dart.js
|
||||
// originally written by Charlie Robbins, https://github.com/indexzero
|
||||
var test = require("tap").test
|
||||
var toNerfDart = require("../../lib/config/nerf-dart.js")
|
||||
|
||||
function validNerfDart (uri, valid) {
|
||||
if (!valid) valid = "//registry.npmjs.org/"
|
||||
test(uri, function (t) {
|
||||
t.equal(toNerfDart(uri), valid)
|
||||
t.end()
|
||||
})
|
||||
}
|
||||
|
||||
validNerfDart("http://registry.npmjs.org")
|
||||
validNerfDart("http://registry.npmjs.org/some-package")
|
||||
validNerfDart("http://registry.npmjs.org/some-package?write=true")
|
||||
validNerfDart("http://user:pass@registry.npmjs.org/some-package?write=true")
|
||||
validNerfDart("http://registry.npmjs.org/#random-hash")
|
||||
validNerfDart("http://registry.npmjs.org/some-package#random-hash")
|
||||
|
||||
validNerfDart(
|
||||
"http://relative.couchapp.npm/design/-/rewrite/",
|
||||
"//relative.couchapp.npm/design/-/rewrite/"
|
||||
)
|
||||
validNerfDart(
|
||||
"http://relative.couchapp.npm:8080/design/-/rewrite/",
|
||||
"//relative.couchapp.npm:8080/design/-/rewrite/"
|
||||
)
|
||||
validNerfDart(
|
||||
"http://relative.couchapp.npm:8080/design/-/rewrite/some-package",
|
||||
"//relative.couchapp.npm:8080/design/-/rewrite/"
|
||||
)
|
Reference in New Issue
Block a user