mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 17:30:31 +00:00
10 lines
309 B
TypeScript
10 lines
309 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);
|
|
});
|
|
});
|