test: replace anonymous function with arrow

PR-URL: https://github.com/nodejs/node/pull/24526
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
This commit is contained in:
Gagandeep Singh 2018-11-21 00:09:06 +05:30 committed by Gireesh Punathil
parent b303d8bb21
commit fcbff6045e

View File

@ -32,20 +32,20 @@ tmpdir.refresh();
const filename = path.join(tmpdir.path || '/tmp', 'big'); const filename = path.join(tmpdir.path || '/tmp', 'big');
let count = 0; let count = 0;
const server = http.createServer(function(req, res) { const server = http.createServer((req, res) => {
let timeoutId; let timeoutId;
assert.strictEqual(req.method, 'POST'); assert.strictEqual(req.method, 'POST');
req.pause(); req.pause();
setTimeout(function() { setTimeout(() => {
req.resume(); req.resume();
}, 1000); }, 1000);
req.on('data', function(chunk) { req.on('data', (chunk) => {
count += chunk.length; count += chunk.length;
}); });
req.on('end', function() { req.on('end', () => {
if (timeoutId) { if (timeoutId) {
clearTimeout(timeoutId); clearTimeout(timeoutId);
} }
@ -55,7 +55,7 @@ const server = http.createServer(function(req, res) {
}); });
server.listen(0); server.listen(0);
server.on('listening', function() { server.on('listening', () => {
common.createZeroFilledFile(filename); common.createZeroFilledFile(filename);
makeRequest(); makeRequest();
}); });
@ -73,14 +73,14 @@ function makeRequest() {
assert.ifError(err); assert.ifError(err);
})); }));
req.on('response', function(res) { req.on('response', (res) => {
res.resume(); res.resume();
res.on('end', function() { res.on('end', () => {
server.close(); server.close();
}); });
}); });
} }
process.on('exit', function() { process.on('exit', () => {
assert.strictEqual(count, 1024 * 10240); assert.strictEqual(count, 1024 * 10240);
}); });