mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
Removing requireAsync and includeAsync from global scope for now as a temporary fix. Reported by Yuffster.
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
include("common.js");
|
|
|
|
setTimeout(function () {
|
|
a = require("fixtures/a.js");
|
|
}, 50);
|
|
|
|
process.addListener("exit", function () {
|
|
assertTrue("A" in a);
|
|
assertEquals("A", a.A());
|
|
assertEquals("D", a.D());
|
|
});
|