0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/disabled/test-eio-race3.js
2010-10-06 20:40:57 -07:00

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