From 0b21dadf0c2804f27d9a3b307b2ae0789e138686 Mon Sep 17 00:00:00 2001 From: openclaw-mission-control bot Date: Sun, 8 Feb 2026 17:38:24 +0000 Subject: [PATCH] test(frontend): import vitest to stabilize typings --- frontend/src/components/activity/ActivityFeed.test.tsx | 2 ++ frontend/src/lib/backoff.test.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/frontend/src/components/activity/ActivityFeed.test.tsx b/frontend/src/components/activity/ActivityFeed.test.tsx index 239d1399..e63e7b58 100644 --- a/frontend/src/components/activity/ActivityFeed.test.tsx +++ b/frontend/src/components/activity/ActivityFeed.test.tsx @@ -1,4 +1,6 @@ import { render, screen } from "@testing-library/react"; +import { describe, expect, it } from "vitest"; + import { ActivityFeed } from "./ActivityFeed"; diff --git a/frontend/src/lib/backoff.test.ts b/frontend/src/lib/backoff.test.ts index 7248d00b..1b3e6334 100644 --- a/frontend/src/lib/backoff.test.ts +++ b/frontend/src/lib/backoff.test.ts @@ -1,4 +1,6 @@ import { createExponentialBackoff } from "./backoff"; +import { describe, expect, it, vi } from "vitest"; + describe("createExponentialBackoff", () => { it("uses default options", () => {