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.
23 lines
646 B
23 lines
646 B
var path = require('path'); |
|
var test = require('tape'); |
|
var resolve = require('../'); |
|
|
|
test('precedence', function (t) { |
|
t.plan(3); |
|
var dir = path.join(__dirname, 'precedence/aaa'); |
|
|
|
resolve('./', { basedir: dir }, function (err, res, pkg) { |
|
t.ifError(err); |
|
t.equal(res, path.join(dir, 'index.js')); |
|
t.equal(pkg.name, 'resolve'); |
|
}); |
|
}); |
|
|
|
test('./ should not load ${dir}.js', function (t) { // eslint-disable-line no-template-curly-in-string |
|
t.plan(1); |
|
var dir = path.join(__dirname, 'precedence/bbb'); |
|
|
|
resolve('./', { basedir: dir }, function (err, res, pkg) { |
|
t.ok(err); |
|
}); |
|
});
|
|
|