mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:10:44 +00:00
11 lines
302 B
TypeScript
11 lines
302 B
TypeScript
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,
|
|
});
|
|
});
|
|
});
|