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.
 
 
 
 
 
 

19 lines
356 B

/* XXX Can this test be modified to not call the now-removed wait()? */
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();
});