mirror of
https://github.com/Xahau/xahau.js.git
synced 2026-06-02 16:26:41 +00:00
* rename files to camelCase * fix imports * more renames * pull all client tests out of individual folders * fix imports * fix tests
16 lines
346 B
TypeScript
16 lines
346 B
TypeScript
const port = 34371
|
|
import {createMockRippled} from './mockRippled'
|
|
|
|
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()
|