From a1c8fa3eff23f597563942951ee2517774f9d0ca Mon Sep 17 00:00:00 2001 From: Brendan Ryan Date: Fri, 10 Apr 2026 08:57:20 -0700 Subject: [PATCH] fix(e2e): use local webauthn ceremony in E2E tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove authUrl from the E2E webAuthn connector config so it falls back to WebAuthnCeremony.local() instead of hitting keys.tempo.xyz. In accounts@0.5.4+, the authUrl option is now correctly forwarded to the adapter (previously silently ignored), which causes E2E tests to call keys.tempo.xyz/register/options — a route that doesn't exist on the key-manager worker. Local ceremonies work with Playwright's CDP virtual authenticator and don't depend on external services. --- src/wagmi.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wagmi.config.ts b/src/wagmi.config.ts index 75312143..c5401041 100644 --- a/src/wagmi.config.ts +++ b/src/wagmi.config.ts @@ -44,7 +44,6 @@ export function getConfig(options: getConfig.Options = {}) { ...(import.meta.env.VITE_E2E === 'true' ? [ webAuthnAccounts({ - authUrl: 'https://keys.tempo.xyz', rdns: 'webAuthn', }), ]