mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

A number of test files use IIFEs to separate distinct tests from each other in the same file. The project has been moving toward using block scopes and let/const in favor of IIFEs. This commit moves IIFE tests to block scopes. Some additional cleanup such as use of strictEqual() and common.mustCall() is also included. PR-URL: https://github.com/nodejs/node/pull/7694 Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com>
31 lines
687 B
JavaScript
31 lines
687 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
var file = path.join(common.tmpDir, 'write.txt');
|
|
|
|
common.refreshTmpDir();
|
|
|
|
{
|
|
const stream = fs.WriteStream(file);
|
|
const _fs_close = fs.close;
|
|
|
|
fs.close = function(fd) {
|
|
assert.ok(fd, 'fs.close must not be called without an undefined fd.');
|
|
fs.close = _fs_close;
|
|
};
|
|
stream.destroy();
|
|
}
|
|
|
|
{
|
|
const stream = fs.createWriteStream(file);
|
|
|
|
stream.on('drain', function() {
|
|
common.fail('\'drain\' event must not be emitted before ' +
|
|
'stream.write() has been called at least once.');
|
|
});
|
|
stream.destroy();
|
|
}
|