hexo/node_modules/resolve/test/nonstring.js

10 lines
191 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
var test = require('tape');
var resolve = require('../');
test('nonstring', function (t) {
t.plan(1);
resolve(555, function (err, res, pkg) {
t.ok(err);
});
});