diff options
Diffstat (limited to 'packages/taler-wallet-cli/src/harness')
| -rw-r--r-- | packages/taler-wallet-cli/src/harness/harness.ts | 18 | 
1 files changed, 8 insertions, 10 deletions
| diff --git a/packages/taler-wallet-cli/src/harness/harness.ts b/packages/taler-wallet-cli/src/harness/harness.ts index b53047e5d..74a523343 100644 --- a/packages/taler-wallet-cli/src/harness/harness.ts +++ b/packages/taler-wallet-cli/src/harness/harness.ts @@ -444,7 +444,7 @@ function setCoin(config: Configuration, c: CoinConfig) {  }  /** - * Send an HTTP request until it suceeds or the process dies. + * Send an HTTP request until it succeeds or the process dies.   */  export async function pingProc(    proc: ProcessWrapper | undefined, @@ -478,7 +478,7 @@ class BankServiceBase {      protected globalTestState: GlobalTestState,      protected bankConfig: BankConfig,      protected configFile: string, -  ) {} +  ) { }  }  /** @@ -923,7 +923,7 @@ export class FakeBankService {      private globalTestState: GlobalTestState,      private bankConfig: FakeBankConfig,      private configFile: string, -  ) {} +  ) { }    async start(): Promise<void> {      this.proc = this.globalTestState.spawnService( @@ -1189,7 +1189,7 @@ export class ExchangeService implements ExchangeServiceInterface {      private exchangeConfig: ExchangeConfig,      private configFilename: string,      private keyPair: EddsaKeyPair, -  ) {} +  ) { }    get name() {      return this.exchangeConfig.name; @@ -1412,7 +1412,7 @@ export class MerchantApiClient {    constructor(      private baseUrl: string,      public readonly auth: MerchantAuthConfiguration, -  ) {} +  ) { }    async changeAuth(auth: MerchantAuthConfiguration): Promise<void> {      const url = new URL("private/auth", this.baseUrl); @@ -1605,7 +1605,7 @@ export class MerchantService implements MerchantServiceInterface {      private globalState: GlobalTestState,      private merchantConfig: MerchantConfig,      private configFilename: string, -  ) {} +  ) { }    private currentTimetravel: Duration | undefined; @@ -1917,10 +1917,8 @@ export class WalletCli {          const resp = await sh(            self.globalTestState,            `wallet-${self.name}`, -          `taler-wallet-cli ${ -            self.timetravelArg ?? "" -          } --no-throttle -LTRACE --wallet-db '${ -            self.dbfile +          `taler-wallet-cli ${self.timetravelArg ?? "" +          } --no-throttle -LTRACE --wallet-db '${self.dbfile            }' api '${op}' ${shellWrap(JSON.stringify(payload))}`,          );          console.log("--- wallet core response ---"); | 
