From 5e5800b5cfbc2c22d4cd4a24ac693a000b3590b1 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Wed, 23 Aug 2023 11:01:33 -0400 Subject: [PATCH] prettier --- src/internal/tabbable.test.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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() {