mirror of
https://github.com/nodejs/node.git
synced 2024-11-29 23:16:30 +01:00
20 lines
371 B
JavaScript
20 lines
371 B
JavaScript
/* XXX Can this test be modified to not call the now-removed wait()? */
|
|
|
|
process.mixin(require("../common"));
|
|
|
|
|
|
puts('first stat ...');
|
|
|
|
fs.stat(__filename)
|
|
.addCallback( function(stats) {
|
|
puts('second stat ...');
|
|
fs.stat(__filename)
|
|
.timeout(1000)
|
|
.wait();
|
|
|
|
puts('test passed');
|
|
})
|
|
.addErrback(function() {
|
|
throw new Exception();
|
|
});
|