mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
093dfaf801
test/simple/test-url.js:31:(0110) Line too long (82 characters). test/simple/test-url.js:39:(0110) Line too long (85 characters). test/simple/test-url.js:40:(0110) Line too long (92 characters).
20 lines
436 B
JavaScript
20 lines
436 B
JavaScript
/* 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();
|
|
});
|