install-nix-action/node_modules/resolve/test/nonstring.js
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +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);
});
});