import { describe, expect, it } from "vitest"; import { APP_VERSION, APP_VERSION_LABEL } from "../src/app-version"; describe("应用版本", () => { it("从统一构建版本生成标题徽标", () => { expect(APP_VERSION).toBe("0.5.0"); expect(APP_VERSION_LABEL).toBe("v0.5.0"); }); });