From 5852c93014396767fa8cec40f14093b28d4d6438 Mon Sep 17 00:00:00 2001 From: JSONbored <49853598+JSONbored@users.noreply.github.com> Date: Thu, 23 Jul 2026 16:25:02 -0700 Subject: [PATCH] fix(engine): add minRankAutotuneEnabled to the policy-spec dist-twin test's full-shape pin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #8270 added the field to AmsPolicySpec and updated the ROOT vitest twin's pin but missed this node:test dist twin — the engine workspace suite has been red on main since (masked in #8270's own local gate run, which short-circuited at an unrelated coverage-phase timeout before reaching the workspace suites). Test-only; the engine suite passes 0-not-ok with it. --- packages/loopover-engine/test/ams-policy-spec-parser.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/loopover-engine/test/ams-policy-spec-parser.test.ts b/packages/loopover-engine/test/ams-policy-spec-parser.test.ts index 042d70df7..4de08f1c9 100644 --- a/packages/loopover-engine/test/ams-policy-spec-parser.test.ts +++ b/packages/loopover-engine/test/ams-policy-spec-parser.test.ts @@ -54,6 +54,7 @@ test("parseAmsPolicySpec: valid raw config normalizes every field and keeps non- maxTurnsPerIteration: 10, selfLoopAutonomy: "observe", networkAllowlist: { ecosystems: ["npm"], extraHosts: ["api.example.com"] }, + minRankAutotuneEnabled: false, }); assert.deepEqual(parsed.warnings, []); });