You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestFrontend.ts 233B

1234567
  1. import { Client } from '../src/Frontend'
  2. const testClient = new Client(20000, 'localhost')
  3. testClient.connect().then(_ => {
  4. testClient.info().then(console.log)
  5. testClient["HelloWorldRPCGroup"].echo("x").then(console.log)
  6. })