mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 14:41:29 +00:00

PR-URL: https://github.com/nodejs/node/pull/35474 Reviewed-By: Ruy Adorno <ruyadorno@github.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Ben Coe <bencoe@gmail.com> Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Guy Bedford <guybedford@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
30 lines
799 B
JavaScript
30 lines
799 B
JavaScript
var path = require('path');
|
|
var test = require('tape');
|
|
var resolve = require('../');
|
|
|
|
test('dotdot', function (t) {
|
|
t.plan(4);
|
|
var dir = path.join(__dirname, '/dotdot/abc');
|
|
|
|
resolve('..', { basedir: dir }, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(__dirname, 'dotdot/index.js'));
|
|
});
|
|
|
|
resolve('.', { basedir: dir }, function (err, res, pkg) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(dir, 'index.js'));
|
|
});
|
|
});
|
|
|
|
test('dotdot sync', function (t) {
|
|
t.plan(2);
|
|
var dir = path.join(__dirname, '/dotdot/abc');
|
|
|
|
var a = resolve.sync('..', { basedir: dir });
|
|
t.equal(a, path.join(__dirname, 'dotdot/index.js'));
|
|
|
|
var b = resolve.sync('.', { basedir: dir });
|
|
t.equal(b, path.join(dir, 'index.js'));
|
|
});
|