Browse Source

test: replace throw with common.fail

Replace anonymous functions with arrow functions.
Replace throw new Error with common.fail.

PR-URL: https://github.com/nodejs/node/pull/9700
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Italo A. Casas <me@italoacasas.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
v7.x
Dejon "DJ" Gill 8 years ago
committed by Myles Borins
parent
commit
d112aad78b
No known key found for this signature in database GPG Key ID: 933B01F40B5CA946
  1. 13
      test/parallel/test-fs-empty-readStream.js

13
test/parallel/test-fs-empty-readStream.js

@ -7,29 +7,32 @@ const fs = require('fs');
const emptyFile = path.join(common.fixturesDir, 'empty.txt');
fs.open(emptyFile, 'r', common.mustCall((error, fd) => {
assert.ifError(error);
const read = fs.createReadStream(emptyFile, { 'fd': fd });
const read = fs.createReadStream(emptyFile, { fd });
read.once('data', () => {
throw new Error('data event should not emit');
common.fail('data event should not emit');
});
read.once('end', common.mustCall(function endEvent1() {}));
}));
fs.open(emptyFile, 'r', common.mustCall((error, fd) => {
assert.ifError(error);
const read = fs.createReadStream(emptyFile, { 'fd': fd });
const read = fs.createReadStream(emptyFile, { fd });
read.pause();
read.once('data', () => {
throw new Error('data event should not emit');
common.fail('data event should not emit');
});
read.once('end', function endEvent2() {
throw new Error('end event should not emit');
common.fail('end event should not emit');
});
setTimeout(common.mustCall(() => {

Loading…
Cancel
Save