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

21 lines
410 B
JavaScript
Raw Normal View History

/* XXX Can this test be modified to not call the now-removed wait()? */
common = require("../common");
2010-10-07 11:05:23 +08:00
assert = common.assert;
console.log('first stat ...');
2010-02-12 17:04:14 +08:00
fs.stat(__filename)
.addCallback( function(stats) {
console.log('second stat ...');
2010-02-12 17:04:14 +08:00
fs.stat(__filename)
.timeout(1000)
.wait();
console.log('test passed');
})
.addErrback(function() {
throw new Exception();
});