murashit_codex-panel/tests/constants.test.ts
2026-05-13 10:13:02 +09:00

10 lines
303 B
TypeScript

import { describe, expect, it } from "vitest";
import manifest from "../manifest.json";
import { CLIENT_VERSION } from "../src/constants";
describe("constants", () => {
it("uses the manifest version for the panel client version", () => {
expect(CLIENT_VERSION).toBe(manifest.version);
});
});