Fix prettier formatting issues

This commit is contained in:
adilallo
2025-08-30 13:46:35 -06:00
parent 1e795e1340
commit 12deae75e8
97 changed files with 335281 additions and 54857 deletions
+2 -2
View File
@@ -60,7 +60,7 @@ test.describe("Accessibility Testing", () => {
focusedElements.push(
`${elementInfo.tagName}${
elementInfo.role ? `[role="${elementInfo.role}"]` : ""
}: ${elementInfo.accessibleName}`
}: ${elementInfo.accessibleName}`,
);
await page.keyboard.press("Tab");
@@ -190,7 +190,7 @@ test.describe("Accessibility Testing", () => {
test("focus indicators - visible focus", async ({ page }) => {
// Test that focus indicators are visible
const focusableElements = page.locator(
"button, a, input, textarea, select, [tabindex]"
"button, a, input, textarea, select, [tabindex]",
);
const elementCount = await focusableElements.count();