run until done at end of test
This commit is contained in:
parent
89f1a281fe
commit
92885fa155
@ -1515,12 +1515,17 @@ export class WalletCli {
|
||||
}
|
||||
|
||||
async runPending(): Promise<void> {
|
||||
await sh(
|
||||
await runCommand(
|
||||
this.globalTestState,
|
||||
`wallet-${this.name}`,
|
||||
`taler-wallet-cli ${this.timetravelArg ?? ""} --no-throttle --wallet-db ${
|
||||
this.dbfile
|
||||
} run-pending`,
|
||||
"taler-wallet-cli",
|
||||
[
|
||||
"--no-throttle",
|
||||
...this.timetravelArgArr,
|
||||
"--wallet-db",
|
||||
this.dbfile,
|
||||
"run-pending",
|
||||
],
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -48,4 +48,6 @@ runTest(async (t: GlobalTestState) => {
|
||||
};
|
||||
|
||||
await makeTestPayment(t, { wallet, merchant, order });
|
||||
|
||||
await wallet.runUntilDone();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user