0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-readdir.js

22 lines
401 B
JavaScript
Raw Normal View History

include("common.js");
2009-09-03 21:29:20 +02:00
var got_error = false;
var promise = node.fs.readdir(fixturesDir);
puts("readdir " + fixturesDir);
2009-09-03 21:29:20 +02:00
promise.addCallback(function (files) {
p(files);
2009-09-03 21:59:31 +02:00
assertArrayEquals(["a.js", "b","x.txt"], files.sort());
2009-09-03 21:29:20 +02:00
});
promise.addErrback(function () {
puts("error");
got_error = true;
});
process.addListener("exit", function () {
assertFalse(got_error);
puts("exit");
});