Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current none :
/
proc
/
self
/
root
/
usr
/
share
/
npm
/
node_modules
/
read-installed
/
test
/
Or
Select Your none :
Upload File :
New :
File
Dir
//proc/self/root/usr/share/npm/node_modules/read-installed/test/empty.js
var readInstalled = require("../read-installed.js"); var test = require("tap").test; var path = require("path"); test("Handle bad path", function (t) { readInstalled(path.join(__dirname, "../unknown"), { dev: true, log: console.error }, function (er, map) { t.notOk(er, "er should be null"); t.ok(map, "map should be data"); t.equal(Object.keys(map.dependencies).length, 0, "Dependencies should have no keys"); if (er) return console.error(er.stack || er.message); t.end(); }); });