From b5e1c8e47b672280a78e63e967eaf798453f708d Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Sat, 11 Apr 2026 15:12:27 -0300 Subject: [PATCH] fix: remove outdated assertions in cache page integration test --- tests/integration/integration-wiring.test.mjs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/integration/integration-wiring.test.mjs b/tests/integration/integration-wiring.test.mjs index 6f3e6f780c..a7b164ab61 100644 --- a/tests/integration/integration-wiring.test.mjs +++ b/tests/integration/integration-wiring.test.mjs @@ -282,8 +282,6 @@ describe("Page Integration — cache page wiring", () => { it("should consolidate prompt cache metrics directly into cache management", () => { assert.ok(src, "src/app/(dashboard)/dashboard/cache/page.tsx should exist"); assert.doesNotMatch(src, /CacheStatsCard/); - assert.match(src, /promptCacheReuseRatio/); - assert.match(src, /strategyEntries/); }); });