mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 01:31:08 +00:00
17 lines
533 B
TypeScript
17 lines
533 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { runLiveCacheRegression } from "./live-cache-regression-runner.js";
|
|
import { LIVE_CACHE_TEST_ENABLED } from "./live-cache-test-support.js";
|
|
|
|
const describeCacheLive = LIVE_CACHE_TEST_ENABLED ? describe : describe.skip;
|
|
|
|
describeCacheLive("live cache regression", () => {
|
|
it(
|
|
"matches the stored provider cache baselines",
|
|
async () => {
|
|
const result = await runLiveCacheRegression();
|
|
expect(result.regressions).toEqual([]);
|
|
},
|
|
30 * 60_000,
|
|
);
|
|
});
|