async onModuleInit()

in src/test-explorer/client.ts [41:55]


  async onModuleInit() {
    this.ctx.subscriptions.push(this)
    this.ctx.subscriptions.push(this.clientOutputChannel)

    this.ctx.subscriptions.push(
      vscode.commands.registerCommand('bazelbsp.showServerOutput', () => {
        this.clientOutputChannel.show()
      })
    )

    const conn = await this.buildServer.getConnection()
    bsp.registerBuildClientHandlers(conn, this)
    bspExt.registerExtendedBuildClientHandlers(conn, this)
    this.initializationRequest()
  }