1
0
Files
stale/node_modules/resolve/test/nonstring.js
T

10 lines
182 B
JavaScript
Raw Normal View History

2020-05-15 15:25:57 -04:00
var test = require('tape');
var resolve = require('../');
test('nonstring', function (t) {
t.plan(1);
resolve(555, function (err, res, pkg) {
t.ok(err);
});
});