From 063888206028ac709e4527b5c23a8bd763bd604d Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 9 Jul 2025 13:32:08 -0700 Subject: [PATCH] Disable ledger activation button between test commands. --- test/GLOBALS.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/GLOBALS.mjs b/test/GLOBALS.mjs index 1af784a..d41178b 100644 --- a/test/GLOBALS.mjs +++ b/test/GLOBALS.mjs @@ -30,6 +30,7 @@ export async function click (text, fn) { const hourglass = document.createTextNode('⏳') button.innerText = text button.addEventListener('click', async () => { + button.disabled = true button.innerText = 'Waiting for device...' button.after(hourglass) try { -- 2.47.3