node/test/parallel/test-fs-write-stream.js
Michaël Zasso d1aabd6264 test: fix style issues after eslint update
Replace var keyword with const or let.

PR-URL: https://github.com/nodejs/io.js/pull/2286
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-01-13 23:16:17 +01:00

32 lines
730 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();
(function() {
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();
})();
(function() {
var stream = fs.createWriteStream(file);
stream.on('drain', function() {
assert.fail(null, null, '\'drain\' event must not be emitted before ' +
'stream.write() has been called at least once.');
});
stream.destroy();
})();