varpath=require('path');vartest=require('tape');varresolve=require('../');test('precedence',function(t){t.plan(3);vardir=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-stringt.plan(1);vardir=path.join(__dirname,'precedence/bbb');resolve('./',{basedir:dir},function(err,res,pkg){t.ok(err);});});