summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorsreepurnajasti <sreepurna.jasti@gmail.com>2018-11-19 19:20:11 +0530
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-11-22 06:12:55 +0100
commit9d34a1e3c0449c46105dd7403120b482b1444205 (patch)
tree7410d40f835180c16caa8e621e7ff14b2d9d3c8c /test
parente9545e6f203496f886099fb3e93c4d8523cc2378 (diff)
downloadandroid-node-v8-9d34a1e3c0449c46105dd7403120b482b1444205.tar.gz
android-node-v8-9d34a1e3c0449c46105dd7403120b482b1444205.tar.bz2
android-node-v8-9d34a1e3c0449c46105dd7403120b482b1444205.zip
test: replace callback with arrow functions
PR-URL: https://github.com/nodejs/node/pull/24490 Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'test')
-rw-r--r--test/pummel/test-keep-alive.js16
1 files changed, 7 insertions, 9 deletions
diff --git a/test/pummel/test-keep-alive.js b/test/pummel/test-keep-alive.js
index b62d731c7b..0fec1ff877 100644
--- a/test/pummel/test-keep-alive.js
+++ b/test/pummel/test-keep-alive.js
@@ -32,7 +32,7 @@ const http = require('http');
const url = require('url');
const body = 'hello world\n';
-const server = http.createServer(function(req, res) {
+const server = http.createServer((req, res) => {
res.writeHead(200, {
'Content-Length': body.length,
'Content-Type': 'text/plain'
@@ -45,7 +45,7 @@ let keepAliveReqSec = 0;
let normalReqSec = 0;
-function runAb(opts, callback) {
+const runAb = (opts, callback) => {
const args = [
'-c', opts.concurrent || 100,
'-t', opts.threads || 2,
@@ -66,11 +66,9 @@ function runAb(opts, callback) {
let stdout;
- child.stdout.on('data', function(data) {
- stdout += data;
- });
+ child.stdout.on('data', (data) => stdout += data);
- child.on('close', function(code, signal) {
+ child.on('close', (code, signal) => {
if (code) {
console.error(code, signal);
process.exit(code);
@@ -90,20 +88,20 @@ function runAb(opts, callback) {
callback(reqSec, keepAliveRequests);
});
-}
+};
server.listen(common.PORT, () => {
runAb({ keepalive: true }, (reqSec) => {
keepAliveReqSec = reqSec;
- runAb({ keepalive: false }, function(reqSec) {
+ runAb({ keepalive: false }, (reqSec) => {
normalReqSec = reqSec;
server.close();
});
});
});
-process.on('exit', function() {
+process.on('exit', () => {
assert.strictEqual(
normalReqSec > 50,
true,