From 2d4209c1bf678b8f08e58b15b66733fa97b4eb74 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 11 Apr 2026 11:50:02 +0100 Subject: [PATCH] test(ci): align node shard check names --- test/scripts/ci-node-test-plan.test.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/scripts/ci-node-test-plan.test.ts b/test/scripts/ci-node-test-plan.test.ts index 8e4f35b1d76..4dca9c1e108 100644 --- a/test/scripts/ci-node-test-plan.test.ts +++ b/test/scripts/ci-node-test-plan.test.ts @@ -7,7 +7,11 @@ describe("scripts/lib/ci-node-test-plan.mjs", () => { expect(shards).not.toHaveLength(0); expect(shards.map((shard) => shard.checkName)).toEqual( - shards.map((shard) => `checks-node-core-test-${shard.shardName}`), + shards.map((shard) => + shard.shardName.startsWith("core-unit-") + ? `checks-node-core-${shard.shardName.slice("core-unit-".length)}` + : `checks-node-${shard.shardName}`, + ), ); });