mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/10550 Reviewed-By: Rich Trott <rtrott@gmail.com>
5 lines
165 B
JavaScript
5 lines
165 B
JavaScript
console.error(__filename);
|
|
console.error(module.paths.join('\n') + '\n');
|
|
const assert = require('assert');
|
|
assert.equal(require('baz'), require('./baz/index.js'));
|