taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit b32f2b4e19aa6fb4cd6e074ac8bf1a2d13bcda5d
parent e89abcb39522dabad41891c375b246e4fb1c24af
Author: Florian Dold <dold@taler.net>
Date:   Tue,  1 Sep 2026 14:58:23 +0200

wallet web UI: allow slower Chromium SQLite benchmarks

Diffstat:
Mpackages/taler-harness/src/integrationtests/test-wallet-web-ui-pwa-sqlite.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-harness/src/integrationtests/test-wallet-web-ui-pwa-sqlite.ts b/packages/taler-harness/src/integrationtests/test-wallet-web-ui-pwa-sqlite.ts @@ -781,7 +781,7 @@ async function runPwaSqliteTest( const id = globalThis.crypto.randomUUID(); const timeout = globalThis.setTimeout( () => reject(new Error(`SQLite probe ${kind} timed out`)), - kind === "benchmark" ? 180_000 : 20_000, + kind === "benchmark" ? 300_000 : 20_000, ); const listener = (event: any) => { if (event.data?.id !== id) return;