From 7e6bbb243df94b56323132acdd714e146421bbc6 Mon Sep 17 00:00:00 2001 From: Scott Werner Date: Fri, 4 Sep 2026 10:13:16 -0400 Subject: [PATCH] Remove obsolete playground browser route assertion --- apps/fabro-web/app/router.test.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apps/fabro-web/app/router.test.tsx b/apps/fabro-web/app/router.test.tsx index fb9faede8..5636c420d 100644 --- a/apps/fabro-web/app/router.test.tsx +++ b/apps/fabro-web/app/router.test.tsx @@ -46,10 +46,4 @@ describe("browser router", () => { expect(paths).toContain("/settings/mcps/new"); expect(paths).toContain("/settings/mcps/:id/edit"); }); - - test("does not expose the removed playground route", () => { - const paths = collectPaths(routes); - - expect(paths).not.toContain("/playground"); - }); });