mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
536 B
23 lines
536 B
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","cycles", "multipart.js",
|
|
"nested-index","test_ca.pem",
|
|
"test_cert.pem", "test_key.pem", "throws_error.js", "x.txt"], files.sort());
|
|
});
|
|
|
|
promise.addErrback(function () {
|
|
puts("error");
|
|
got_error = true;
|
|
});
|
|
|
|
process.addListener("exit", function () {
|
|
assert.equal(false, got_error);
|
|
puts("exit");
|
|
});
|
|
|