The copyright and license notice is already in the LICENSE file. There is no justifiable reason to also require that it be included in every file, since the individual files are not individually distributed except as part of the entire package.
19 lines
436 B
JavaScript
19 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();
|
|
});
|