0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/fixtures/b/d.js
Herbert Vojčík cf2b206a8e More changes to tests so they really work under context module loader.
Plus, getting rid of test/common.js defining things in global.
2010-08-17 08:41:05 -07:00

13 lines
173 B
JavaScript

common.debug("load fixtures/b/d.js");
var string = "D";
exports.D = function () {
return string;
};
process.addListener("exit", function () {
string = "D done";
});