summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/resolve/test/faulty_basedir.js
diff options
context:
space:
mode:
Diffstat (limited to 'bin/wiki/ImportarDesdeURL/node_modules/resolve/test/faulty_basedir.js')
-rw-r--r--bin/wiki/ImportarDesdeURL/node_modules/resolve/test/faulty_basedir.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/bin/wiki/ImportarDesdeURL/node_modules/resolve/test/faulty_basedir.js b/bin/wiki/ImportarDesdeURL/node_modules/resolve/test/faulty_basedir.js
new file mode 100644
index 00000000..5f2141a6
--- /dev/null
+++ b/bin/wiki/ImportarDesdeURL/node_modules/resolve/test/faulty_basedir.js
@@ -0,0 +1,29 @@
+var test = require('tape');
+var path = require('path');
+var resolve = require('../');
+
+test('faulty basedir must produce error in windows', { skip: process.platform !== 'win32' }, function (t) {
+ t.plan(1);
+
+ var resolverDir = 'C:\\a\\b\\c\\d';
+
+ resolve('tape/lib/test.js', { basedir: resolverDir }, function (err, res, pkg) {
+ t.equal(!!err, true);
+ });
+});
+
+test('non-existent basedir should not throw when preserveSymlinks is false', function (t) {
+ t.plan(2);
+
+ var opts = {
+ basedir: path.join(path.sep, 'unreal', 'path', 'that', 'does', 'not', 'exist'),
+ preserveSymlinks: false
+ };
+
+ var module = './dotdot/abc';
+
+ resolve(module, opts, function (err, res) {
+ t.equal(err.code, 'MODULE_NOT_FOUND');
+ t.equal(res, undefined);
+ });
+});