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> {
|
async runPending(): Promise<void> {
|
||||||
await sh(
|
await runCommand(
|
||||||
this.globalTestState,
|
this.globalTestState,
|
||||||
`wallet-${this.name}`,
|
`wallet-${this.name}`,
|
||||||
`taler-wallet-cli ${this.timetravelArg ?? ""} --no-throttle --wallet-db ${
|
"taler-wallet-cli",
|
||||||
this.dbfile
|
[
|
||||||
} run-pending`,
|
"--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 makeTestPayment(t, { wallet, merchant, order });
|
||||||
|
|
||||||
|
await wallet.runUntilDone();
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user