]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - apps/tidep0084.git/blob - example/iot-gateway/node_modules/resolve/test/nonstring.js
Initial commit
[apps/tidep0084.git] / example / iot-gateway / node_modules / resolve / test / nonstring.js
1 var test = require('tape');
2 var resolve = require('../');
4 test('nonstring', function (t) {
5     t.plan(1);
6     resolve(555, function (err, res, pkg) {
7         t.ok(err);
8     });
9 });