node/test/disabled/test-eio-race3.js

21 lines
409 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();
});