test(config): align legacy routing snapshot expectation

This commit is contained in:
Tak Hoffman
2026-03-26 23:17:30 -05:00
parent 4262abe05d
commit 5eee793669

View File

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