You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nonstring.js 182B

123456789
  1. var test = require('tape');
  2. var resolve = require('../');
  3. test('nonstring', function (t) {
  4. t.plan(1);
  5. resolve(555, function (err, res, pkg) {
  6. t.ok(err);
  7. });
  8. });