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
436 B

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