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.
22 lines
485 B
JavaScript
22 lines
485 B
JavaScript
process.mixin(require("./common"));
|
|
|
|
var got_error = false;
|
|
|
|
var promise = posix.readdir(fixturesDir);
|
|
puts("readdir " + fixturesDir);
|
|
|
|
promise.addCallback(function (files) {
|
|
p(files);
|
|
assert.deepEqual(["a.js", "b", "multipart.js", "test_ca.pem", "test_cert.pem", "test_key.pem", "x.txt"], files.sort());
|
|
});
|
|
|
|
promise.addErrback(function () {
|
|
puts("error");
|
|
got_error = true;
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(false, got_error);
|
|
puts("exit");
|
|
});
|