fix(game-ui): 명장일람 유니크 아이템 설명 복구

This commit is contained in:
2026-09-01 05:55:27 +00:00
parent 426e1127ef
commit 63e29743d9
2 changed files with 27 additions and 2 deletions
@@ -778,7 +778,18 @@ test.describe('best general legacy parity', () => {
const itemName = page.locator('.item-name').first();
await itemName.hover();
await expect(itemName).toHaveAttribute('title', '최고의 명마');
const itemTooltip = page.locator('.tippy-box[data-theme~="sammo-rich"]:visible');
await expect(itemTooltip).toContainText('최고의 명마');
await expect(itemName.locator('[data-rich-tooltip^="best-general-item-"]')).toHaveAttribute(
'tabindex',
'0'
);
if (artifactRoot) {
await page.screenshot({
path: resolve(artifactRoot, `best-general-item-tooltip-${viewport.name}.png`),
animations: 'disabled',
});
}
});
}