aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-harness/src/harness/harness.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-02-10 00:50:22 +0100
committerFlorian Dold <florian@dold.me>2023-02-10 00:50:22 +0100
commitc4180e1290261c15d4c8cd081aec12252edf1939 (patch)
treef40b6827e24acf834941b6882078b440dffd8758 /packages/taler-harness/src/harness/harness.ts
parent1a3040d872769fc65b1a194459f8af40c8077f49 (diff)
downloadwallet-core-c4180e1290261c15d4c8cd081aec12252edf1939.tar.xz
harness: run without throttling, make fakebank issue reproducible
Diffstat (limited to 'packages/taler-harness/src/harness/harness.ts')
-rw-r--r--packages/taler-harness/src/harness/harness.ts10
1 files changed, 9 insertions, 1 deletions
diff --git a/packages/taler-harness/src/harness/harness.ts b/packages/taler-harness/src/harness/harness.ts
index b2c73c9ab..3403c266e 100644
--- a/packages/taler-harness/src/harness/harness.ts
+++ b/packages/taler-harness/src/harness/harness.ts
@@ -1940,7 +1940,15 @@ export class WalletService {
const unixPath = this.socketPath;
this.globalState.spawnService(
"taler-wallet-cli",
- ["--wallet-db", dbPath, "advanced", "serve", "--unix-path", unixPath],
+ [
+ "--wallet-db",
+ dbPath,
+ "--no-throttle", // FIXME: Optionally do throttling for some tests?
+ "advanced",
+ "serve",
+ "--unix-path",
+ unixPath,
+ ],
`wallet-${this.opts.name}`,
);
}