summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmanpreet <amanpreet6309108@gmail.com>2018-11-17 18:08:08 +0530
committerRich Trott <rtrott@gmail.com>2018-11-19 13:09:23 -0800
commit35b996d6e89fa9851e163a305bc298ace9f219a2 (patch)
tree93c4a57655c845826435cdfd40f5d94f03ae8992
parentc03c6e920f03a6be69612a46355dad36c948c5b4 (diff)
downloadandroid-node-v8-35b996d6e89fa9851e163a305bc298ace9f219a2.tar.gz
android-node-v8-35b996d6e89fa9851e163a305bc298ace9f219a2.tar.bz2
android-node-v8-35b996d6e89fa9851e163a305bc298ace9f219a2.zip
test: replace anonymous closure functions with arrow function
PR-URL: https://github.com/nodejs/node/pull/24417 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
-rw-r--r--test/parallel/test-error-reporting.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/parallel/test-error-reporting.js b/test/parallel/test-error-reporting.js
index b9d78b181a..f56f1e4bdc 100644
--- a/test/parallel/test-error-reporting.js
+++ b/test/parallel/test-error-reporting.js
@@ -27,7 +27,7 @@ const fixtures = require('../common/fixtures');
function errExec(script, callback) {
const cmd = `"${process.argv[0]}" "${fixtures.path(script)}"`;
- return exec(cmd, function(err, stdout, stderr) {
+ return exec(cmd, (err, stdout, stderr) => {
// There was some error
assert.ok(err);
@@ -43,39 +43,39 @@ const syntaxErrorMessage = /\bSyntaxError\b/;
// Simple throw error
-errExec('throws_error.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error.js', common.mustCall((err, stdout, stderr) => {
assert.ok(/blah/.test(stderr));
}));
// Trying to JSON.parse(undefined)
-errExec('throws_error2.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error2.js', common.mustCall((err, stdout, stderr) => {
assert.ok(syntaxErrorMessage.test(stderr));
}));
// Trying to JSON.parse(undefined) in nextTick
-errExec('throws_error3.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error3.js', common.mustCall((err, stdout, stderr) => {
assert.ok(syntaxErrorMessage.test(stderr));
}));
// throw ILLEGAL error
-errExec('throws_error4.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error4.js', common.mustCall((err, stdout, stderr) => {
assert.ok(syntaxErrorMessage.test(stderr));
}));
// Specific long exception line doesn't result in stack overflow
-errExec('throws_error5.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error5.js', common.mustCall((err, stdout, stderr) => {
assert.ok(syntaxErrorMessage.test(stderr));
}));
// Long exception line with length > errorBuffer doesn't result in assertion
-errExec('throws_error6.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error6.js', common.mustCall((err, stdout, stderr) => {
assert.ok(syntaxErrorMessage.test(stderr));
}));
// Object that throws in toString() doesn't print garbage
-errExec('throws_error7.js', common.mustCall(function(err, stdout, stderr) {
+errExec('throws_error7.js', common.mustCall((err, stdout, stderr) => {
assert.ok(/<toString\(\) threw exception/.test(stderr));
}));