feat(cli): expose bb agent coordination commands
This commit is contained in:
parent
1ba74e9966
commit
114c227874
2 changed files with 282 additions and 1 deletions
|
|
@ -20,3 +20,9 @@ test('uninstall requires --yes', async () => {
|
|||
assert.equal(out.ok, false);
|
||||
assert.match(String(out.error), /--yes/);
|
||||
});
|
||||
|
||||
test('agent list routes to coordination CLI surface', async () => {
|
||||
const out = await runCli(['agent', 'list', '--json']);
|
||||
assert.equal(typeof out.command, 'string');
|
||||
assert.equal(out.command, 'agent list');
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue