Skip to content

Commit 6b8f6ec

Browse files
thavelickclaude
andcommitted
Fix code formatting in integration tests
Auto-format test file to match project standards. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a0fba73 commit 6b8f6ec

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

tests/integration/settings-modal.spec.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,20 @@ test.describe("Settings Modal", () => {
1919
await expect(settingsPanel).toHaveAttribute("aria-hidden", "true");
2020
});
2121

22-
test("should save default search engine selection and show URL tooltip on hover", async ({ page }) => {
22+
test("should save default search engine selection and show URL tooltip on hover", async ({
23+
page,
24+
}) => {
2325
const hamburgerButton = page.locator(".hamburger-menu");
2426

2527
await hamburgerButton.click();
2628

2729
// Test hover tooltip functionality
28-
const githubDescription = page.locator('.bang-description').filter({ hasText: 'GitHub Search' });
30+
const githubDescription = page
31+
.locator(".bang-description")
32+
.filter({ hasText: "GitHub Search" });
2933
await githubDescription.hover();
30-
const titleAttribute = await githubDescription.getAttribute('title');
31-
expect(titleAttribute).toContain('https://github.com/search?q={{{s}}}');
34+
const titleAttribute = await githubDescription.getAttribute("title");
35+
expect(titleAttribute).toContain("https://github.com/search?q={{{s}}}");
3236

3337
const githubRadio = page.locator('input[name="default-bang"][value="gh"]');
3438
await githubRadio.click();

0 commit comments

Comments
 (0)