summaryrefslogtreecommitdiff
path: root/packages/taler-wallet-cli/src/integrationtests/harness.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/taler-wallet-cli/src/integrationtests/harness.ts')
-rw-r--r--packages/taler-wallet-cli/src/integrationtests/harness.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/taler-wallet-cli/src/integrationtests/harness.ts b/packages/taler-wallet-cli/src/integrationtests/harness.ts
index 9c7aa2852..b6ea02696 100644
--- a/packages/taler-wallet-cli/src/integrationtests/harness.ts
+++ b/packages/taler-wallet-cli/src/integrationtests/harness.ts
@@ -130,7 +130,7 @@ export async function sh(
command: string,
env: { [index: string]: string | undefined } = process.env,
): Promise<string> {
- console.log("runing command", command);
+ console.log("running command", command);
return new Promise((resolve, reject) => {
const stdoutChunks: Buffer[] = [];
const proc = spawn(command, {
@@ -188,7 +188,7 @@ export async function runCommand(
args: string[],
env: { [index: string]: string | undefined } = process.env,
): Promise<string> {
- console.log("runing command", shellescape([command, ...args]));
+ console.log("running command", shellescape([command, ...args]));
return new Promise((resolve, reject) => {
const stdoutChunks: Buffer[] = [];
const proc = spawn(command, args, {
@@ -882,7 +882,7 @@ export class ExchangeService implements ExchangeServiceInterface {
"${TALER_DATA_HOME}/exchange/live-keys/",
);
config.setString(
- "exchage",
+ "exchange",
"revocation_dir",
"${TALER_DATA_HOME}/exchange/revocations",
);
@@ -1589,7 +1589,7 @@ export async function runTestWithState(
const handleSignal = (s: string) => {
console.warn(
- `**** received fatal proces event, terminating test ${testName}`,
+ `**** received fatal process event, terminating test ${testName}`,
);
gc.shutdownSync();
process.exit(1);