install-nix-action/node_modules/resolve/test/nonstring.js
Domen Kožar 70742d22d9
v6
2019-11-19 17:50:30 +01:00

9 lines
182 B
JavaScript

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