mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
21 lines
410 B
JavaScript
21 lines
410 B
JavaScript
/* XXX Can this test be modified to not call the now-removed wait()? */
|
|
|
|
common = require("../common");
|
|
assert = common.assert;
|
|
|
|
|
|
console.log('first stat ...');
|
|
|
|
fs.stat(__filename)
|
|
.addCallback( function(stats) {
|
|
console.log('second stat ...');
|
|
fs.stat(__filename)
|
|
.timeout(1000)
|
|
.wait();
|
|
|
|
console.log('test passed');
|
|
})
|
|
.addErrback(function() {
|
|
throw new Exception();
|
|
});
|