mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
530328f12b
Refactored test suite to use the assert module for testing rather than mjsunit.
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
process.mixin(require("./common"));
|
|
|
|
setTimeout(function () {
|
|
a = require("./fixtures/a");
|
|
}, 50);
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(true, "A" in a);
|
|
assert.equal("A", a.A());
|
|
assert.equal("D", a.D());
|
|
});
|