From df732518f31a08a9e3cfcd11704398a083fbf8b8 Mon Sep 17 00:00:00 2001 From: Kunal Date: Sat, 7 Feb 2026 16:45:42 +0000 Subject: [PATCH] fix(e2e): add scoped Cypress typings for .cy.ts --- frontend/cypress/e2e/activity_feed.cy.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/cypress/e2e/activity_feed.cy.ts b/frontend/cypress/e2e/activity_feed.cy.ts index 522730cc..b0f2e23b 100644 --- a/frontend/cypress/e2e/activity_feed.cy.ts +++ b/frontend/cypress/e2e/activity_feed.cy.ts @@ -1,3 +1,5 @@ +/// + describe("/activity feed", () => { const apiBase = "**/api/v1"; @@ -50,7 +52,7 @@ describe("/activity feed", () => { stubStreamEmpty(); cy.visit("/activity", { - onBeforeLoad(win) { + onBeforeLoad(win: Window) { win.localStorage.clear(); }, });