Some checks failed
CI / go (push) Waiting to run
CI / docker (push) Waiting to run
CI / lint-go (push) Waiting to run
CI / lint-docs (push) Waiting to run
CI / check-paperclip (push) Waiting to run
Deploy static site / Deploy to GitHub Pages (push) Has been cancelled
Deploy static site / Deploy via Docker to hatch.surf (push) Has been cancelled
Resolved conflicts by taking GitHub versions for: - .dockerignore, .gitignore, Dockerfile, README.md, docker-compose.yml Kept deploy.sh updated to: - Pull from GitHub (primary source) - Push to Gitea (push-mirror) - Build from site/ directory (GitHub structure) Co-Authored-By: Paperclip <noreply@paperclip.ing>
55 lines
1.8 KiB
JavaScript
55 lines
1.8 KiB
JavaScript
var test = require('tape');
|
|
var resolve = require('../');
|
|
var path = require('path');
|
|
|
|
test('shadowed core modules still return core module', function (t) {
|
|
t.plan(2);
|
|
|
|
resolve('util', { basedir: path.join(__dirname, 'shadowed_core') }, function (err, res) {
|
|
t.ifError(err);
|
|
t.equal(res, 'util');
|
|
});
|
|
});
|
|
|
|
test('shadowed core modules still return core module [sync]', function (t) {
|
|
t.plan(1);
|
|
|
|
var res = resolve.sync('util', { basedir: path.join(__dirname, 'shadowed_core') });
|
|
|
|
t.equal(res, 'util');
|
|
});
|
|
|
|
test('shadowed core modules return shadow when appending `/`', function (t) {
|
|
t.plan(2);
|
|
|
|
resolve('util/', { basedir: path.join(__dirname, 'shadowed_core') }, function (err, res) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(__dirname, 'shadowed_core/node_modules/util/index.js'));
|
|
});
|
|
});
|
|
|
|
test('shadowed core modules return shadow when appending `/` [sync]', function (t) {
|
|
t.plan(1);
|
|
|
|
var res = resolve.sync('util/', { basedir: path.join(__dirname, 'shadowed_core') });
|
|
|
|
t.equal(res, path.join(__dirname, 'shadowed_core/node_modules/util/index.js'));
|
|
});
|
|
|
|
test('shadowed core modules return shadow with `includeCoreModules: false`', function (t) {
|
|
t.plan(2);
|
|
|
|
resolve('util', { basedir: path.join(__dirname, 'shadowed_core'), includeCoreModules: false }, function (err, res) {
|
|
t.ifError(err);
|
|
t.equal(res, path.join(__dirname, 'shadowed_core/node_modules/util/index.js'));
|
|
});
|
|
});
|
|
|
|
test('shadowed core modules return shadow with `includeCoreModules: false` [sync]', function (t) {
|
|
t.plan(1);
|
|
|
|
var res = resolve.sync('util', { basedir: path.join(__dirname, 'shadowed_core'), includeCoreModules: false });
|
|
|
|
t.equal(res, path.join(__dirname, 'shadowed_core/node_modules/util/index.js'));
|
|
});
|