convert the rest of the helper files to ts

This commit is contained in:
Fred K. Schott
2019-10-15 21:12:18 -07:00
parent 7ec128c2e4
commit 39f6a51794
16 changed files with 89 additions and 112 deletions

View File

@@ -1,19 +0,0 @@
'use strict';
const port = 34371;
const createMockRippled = require('./mock-rippled');
function main() {
if (global.describe) {
// we are running inside mocha, exiting
return;
}
console.log('starting server on port ' + port);
createMockRippled(port);
console.log('starting server on port ' + String(port + 1));
createMockRippled(port + 1);
}
main();