diff --git a/src/internal/tabbable.test.ts b/src/internal/tabbable.test.ts index 3701eb942..7807a39ee 100644 --- a/src/internal/tabbable.test.ts +++ b/src/internal/tabbable.test.ts @@ -11,9 +11,8 @@ async function holdShiftKey(callback: () => Promise) { await sendKeys({ up: 'Shift' }); } -const tabKey = navigator.userAgent.includes('Safari') && !navigator.userAgent.includes('HeadlessChrome') - ? 'Alt+Tab' - : 'Tab'; +const tabKey = + navigator.userAgent.includes('Safari') && !navigator.userAgent.includes('HeadlessChrome') ? 'Alt+Tab' : 'Tab'; // Simple helper to turn the activeElements generator into an array function activeElementsArray() {