mirror of
https://github.com/thangisme/notes.git
synced 2025-11-23 13:12:25 -05:00
Initial commit
This commit is contained in:
59
node_modules/normalize-package-data/test/scoped.js
generated
vendored
Normal file
59
node_modules/normalize-package-data/test/scoped.js
generated
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
var test = require("tap").test
|
||||
|
||||
var fixNameField = require("../lib/fixer.js").fixNameField
|
||||
var fixBinField = require("../lib/fixer.js").fixBinField
|
||||
|
||||
test("a simple scoped module has a valid name", function (t) {
|
||||
var data = {name : "@org/package"}
|
||||
fixNameField(data, false)
|
||||
t.equal(data.name, "@org/package", "name was unchanged")
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
||||
test("'org@package' is not a valid name", function (t) {
|
||||
t.throws(function () {
|
||||
fixNameField({name : "org@package"}, false)
|
||||
}, "blows up as expected")
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
||||
test("'org=package' is not a valid name", function (t) {
|
||||
t.throws(function () {
|
||||
fixNameField({name : "org=package"}, false)
|
||||
}, "blows up as expected")
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
||||
test("'@org=sub/package' is not a valid name", function (t) {
|
||||
t.throws(function () {
|
||||
fixNameField({name : "@org=sub/package"}, false)
|
||||
}, "blows up as expected")
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
||||
test("'@org/' is not a valid name", function (t) {
|
||||
t.throws(function () {
|
||||
fixNameField({name : "@org/"}, false)
|
||||
}, "blows up as expected")
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
||||
test("'@/package' is not a valid name", function (t) {
|
||||
t.throws(function () {
|
||||
fixNameField({name : "@/package"}, false)
|
||||
}, "blows up as expected")
|
||||
|
||||
t.end()
|
||||
})
|
||||
|
||||
test("name='@org/package', bin='bin.js' is bin={package:'bin.js'}", function (t) {
|
||||
var obj = {name : "@org/package", bin: "bin.js"}
|
||||
fixBinField(obj)
|
||||
t.isDeeply(obj.bin, {package: 'bin.js'})
|
||||
t.end()
|
||||
})
|
||||
Reference in New Issue
Block a user