We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
tap
1 parent 6984dcb commit ddca9edCopy full SHA for ddca9ed
test/node_path.js
@@ -43,6 +43,7 @@ test('$NODE_PATH', function (t) {
43
],
44
basedir: 'node_path/x'
45
}, function (err, res) {
46
- t.equal(res, path.resolve(__dirname, '..', 'node_modules/tap/lib/main.js'));
+ var root = require('tap/package.json').main;
47
+ t.equal(res, path.resolve(__dirname, '..', 'node_modules/tap', root));
48
});
49
0 commit comments