From fe2ff5d22e35c464f8b55a32add7065abbd58298 Mon Sep 17 00:00:00 2001 From: Nicolas Merget <104347736+nmerget@users.noreply.github.com> Date: Mon, 13 May 2024 08:36:32 +0200 Subject: [PATCH] Update showcases/e2e/fixtures/hover.ts Co-authored-by: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> --- showcases/e2e/fixtures/hover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/showcases/e2e/fixtures/hover.ts b/showcases/e2e/fixtures/hover.ts index 304b62d9bbf..b3104357050 100644 --- a/showcases/e2e/fixtures/hover.ts +++ b/showcases/e2e/fixtures/hover.ts @@ -5,7 +5,7 @@ export const hoverPre = async (page: Page, selector: string) => { const components = await page.locator('main').locator(selector).all(); for (const component of components) { await component.evaluate((comp: HTMLElement) => { - comp.setAttribute('data-testing-hover', 'true'); + comp.setAttribute('data-e2e-hover', 'true'); }); }