Revert "Merge pull request #1052 from FredKSchott/tests-to-ts-03"

This reverts commit e08367365f, reversing
changes made to 36a9e7a7cf.
This commit is contained in:
Elliot Lee
2019-11-06 10:34:05 -08:00
parent 5232f95c3f
commit b648387a57
18 changed files with 118 additions and 90 deletions

View File

@@ -1,15 +0,0 @@
const port = 34371;
import {createMockRippled} from './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();