From 5eee79366904d1efc2fca3db2fc1e6cf4b33de8a Mon Sep 17 00:00:00 2001 From: Tak Hoffman <781889+Takhoffman@users.noreply.github.com> Date: Thu, 26 Mar 2026 23:17:30 -0500 Subject: [PATCH] test(config): align legacy routing snapshot expectation --- src/config/config-misc.test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config/config-misc.test.ts b/src/config/config-misc.test.ts index ca88cff8867..270ebd50b70 100644 --- a/src/config/config-misc.test.ts +++ b/src/config/config-misc.test.ts @@ -481,8 +481,9 @@ describe("config strict validation", () => { const snap = await readConfigFileSnapshot(); - expect(snap.valid).toBe(true); - expect(snap.legacyIssues).not.toHaveLength(0); + expect(snap.valid).toBe(false); + expect(snap.legacyIssues).toHaveLength(0); + expect(snap.issues[0]?.message).toContain('"routing"'); }); });