mirror of https://github.com/nodejs/node.git
16 lines
301 B
JavaScript
16 lines
301 B
JavaScript
|
process.mixin(require("./common"));
|
||
|
|
||
|
puts('first stat ...');
|
||
|
|
||
|
posix.stat(__filename)
|
||
|
.addCallback( function(stats) {
|
||
|
puts('second stat ...');
|
||
|
posix.stat(__filename)
|
||
|
.timeout(1000)
|
||
|
.wait();
|
||
|
|
||
|
puts('test passed');
|
||
|
})
|
||
|
.addErrback(function() {
|
||
|
throw new Exception();
|
||
|
});
|