0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 07:27:22 +01:00
nodejs/benchmark/_test-double-benchmarker.js

8 lines
144 B
JavaScript
Raw Normal View History

'use strict';
const http = require('http');
http.get(process.env.test_url, function() {
console.log(JSON.stringify({ throughput: 1 }));
});