17 lines
512 B
JavaScript
17 lines
512 B
JavaScript
// fake es server for the keepalive test script
|
|
|
|
// Node 0.9.25 uses timeouts for outgoing messages
|
|
// which prevent sinon from being able to ensure
|
|
// timeouts aren't being left behind
|
|
|
|
const express = require('express');
|
|
const app = express().post('/_search', function (req, res) {
|
|
res.json(200, { hits: { hits: [] } });
|
|
});
|
|
|
|
const server = require('http').createServer(app);
|
|
server.listen(function () {
|
|
const port = server.address().port;
|
|
process.connected ? process.send(port) : console.log(port);
|
|
});
|