diff --git a/src/commands/status-overview-rows.test.ts b/src/commands/status-overview-rows.test.ts index 356fe80e353..c934c6c8eea 100644 --- a/src/commands/status-overview-rows.test.ts +++ b/src/commands/status-overview-rows.test.ts @@ -1,4 +1,5 @@ import { describe, expect, it } from "vitest"; +import { VERSION } from "../version.js"; import { buildStatusAllOverviewRows, buildStatusCommandOverviewRows, @@ -63,7 +64,7 @@ describe("status-overview-rows", () => { }), ).toEqual( expect.arrayContaining([ - { Item: "Version", Value: expect.any(String) }, + { Item: "Version", Value: VERSION }, { Item: "OS", Value: "macOS" }, { Item: "Config", Value: "/tmp/openclaw.json" }, { Item: "Security", Value: "Run: openclaw security audit --deep" },