- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
24 lines
646 B
JavaScript
24 lines
646 B
JavaScript
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);
|
|
});
|
|
});
|