mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 17:40:44 +00:00
fix(ci): restore full release validation blockers
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user