fix(ci): restore full release validation blockers

This commit is contained in:
Peter Steinberger
2026-04-28 19:20:14 +01:00
parent 2290adbf57
commit e2295b33c1
6 changed files with 166 additions and 28 deletions

View File

@@ -135,9 +135,10 @@ const record = registry.plugins.find((entry) => entry.id === pluginId);
assert.ok(record, "smoke plugin missing from registry");
assert.equal(record.status, "loaded", record.error ?? "smoke plugin failed to load");
assert.deepEqual(getPluginCommandSpecs(), [
{ name: "pair", description: "Pair a device", acceptsArgs: true },
]);
assert.deepEqual(
getPluginCommandSpecs().filter((command) => command.name === "pair"),
[{ name: "pair", description: "Pair a device", acceptsArgs: true }],
);
const match = matchPluginCommand("/pair now");
assert.ok(match, "canonical built command registry did not receive the command");