mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
12 lines
380 B
JavaScript
12 lines
380 B
JavaScript
exports.testDir = process.path.dirname(__filename);
|
|
exports.fixturesDir = process.path.join(exports.testDir, "fixtures");
|
|
exports.libDir = process.path.join(exports.testDir, "../../lib");
|
|
|
|
require.paths.unshift(exports.libDir);
|
|
|
|
var mjsunit = require("/mjsunit.js");
|
|
var utils = require("/utils.js");
|
|
process.mixin(exports, mjsunit, utils);
|
|
exports.posix = require("/posix.js");
|
|
|