Remove obsolete playground browser route assertion

This commit is contained in:
Scott Werner 2026-09-04 10:13:16 -04:00
parent f1b569d9e6
commit 7e6bbb243d

View file

@ -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");
});
});