mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-27 19:33:36 +00:00
12 lines
360 B
TypeScript
12 lines
360 B
TypeScript
// Kimi Coding tests cover replay policy plugin behavior.
|
|
import { describe, expect, it } from "vitest";
|
|
import { KIMI_REPLAY_POLICY } from "./replay-policy.js";
|
|
|
|
describe("kimi replay policy", () => {
|
|
it("disables signature preservation for replay repair", () => {
|
|
expect(KIMI_REPLAY_POLICY).toEqual({
|
|
preserveSignatures: false,
|
|
});
|
|
});
|
|
});
|