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.

20 lines
377 B

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