fix(e2e): add scoped Cypress typings for .cy.ts

This commit is contained in:
Kunal
2026-02-07 16:45:42 +00:00
parent 7856331377
commit df732518f3

View File

@@ -1,3 +1,5 @@
/// <reference types="cypress" />
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();
},
});