Skip to content

Commit c6c6ea3

Browse files
committed
fix(tab-button): fix prettier issues
1 parent ff6a21b commit c6c6ea3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

core/src/components/tabs/test/a11y/tab-button-dark-focused.e2e.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ configs({ directions: ['ltr'] }).forEach(({ title, screenshot, config }) => {
2727
});
2828

2929
test('focused tab button should not use light-mode fallback color', async ({ page }) => {
30-
const bgColor = await page.locator('.e2eTabOneButton').evaluate((el: HTMLElement) =>
31-
window.getComputedStyle(el, '::after').backgroundColor
32-
);
30+
const bgColor = await page
31+
.locator('.e2eTabOneButton')
32+
.evaluate((el: HTMLElement) => window.getComputedStyle(el, '::after').backgroundColor);
3333
// #e0e0e0 (rgb(224, 224, 224)) is the light-mode fallback from get-color-shade(#fff)
3434
expect(bgColor).not.toBe('rgb(224, 224, 224)');
3535
});

0 commit comments

Comments
 (0)