test(ui): drop narration comments per repo convention

This commit is contained in:
Tin Chi Lo 2026-08-27 20:40:01 -07:00
parent cf1450e050
commit ecd58ee21e
2 changed files with 0 additions and 4 deletions

View file

@ -98,7 +98,6 @@ const HowClassificationWorks: React.FC<{ value: ComplexityRouterConfigValue }> =
value.reasoning_override_min_score,
);
// The whole card describes the heuristic scorer, which an edited tier set replaces outright.
if (value.custom_tier_set) return null;
return (

View file

@ -194,9 +194,6 @@ describe("AddAutoRouterTab", () => {
expect(vi.mocked(handleAddAutoRouterSubmit).mock.calls.at(-1)?.[0]).toMatchObject({ team_id: "team-1" });
});
// The dry-run exists so a config the write gate would refuse shows the backend's own message
// inline instead of coming back as a raw 400. Nothing asserted that its verdict actually stops
// the submit, so the whole gate could be deleted with the suite still green.
it("does not submit when the backend's dry-run rejects the config", async () => {
const user = userEvent.setup();
vi.mocked(getMissingTiersError).mockReturnValue(null);