summaryrefslogtreecommitdiff
path: root/benchmark/_test-double-benchmarker.js
blob: 8c2f744fbf6e9f4bb642dcb98a1f02ea450a42db (plain)
1
2
3
4
5
6
7
'use strict';

const http = require('http');

http.get(process.env.test_url, function() {
  console.log(JSON.stringify({ throughput: 1 }));
});