13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import {
|
|
APP_VERSION,
|
|
APP_VERSION_LABEL
|
|
} from "../src/app-version";
|
|
|
|
describe("应用版本", () => {
|
|
it("从统一构建版本生成标题徽标", () => {
|
|
expect(APP_VERSION).toBe("0.4.0");
|
|
expect(APP_VERSION_LABEL).toBe("v0.4.0");
|
|
});
|
|
});
|