Your IP : 216.73.216.74


Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/resolve/test/
Upload File :
Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/resolve/test/nonstring.js

var test = require('tape');
var resolve = require('../');

test('nonstring', function (t) {
    t.plan(1);
    resolve(555, function (err, res, pkg) {
        t.ok(err);
    });
});