mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 09:01:14 +00:00
feat(coding-agent): add --verbose CLI flag to override quietStartup setting
This commit is contained in:
parent
d89f6e08ce
commit
07e2444b9b
5 changed files with 19 additions and 3 deletions
|
|
@ -220,6 +220,13 @@ describe("parseArgs", () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe("--verbose flag", () => {
|
||||
test("parses --verbose flag", () => {
|
||||
const result = parseArgs(["--verbose"]);
|
||||
expect(result.verbose).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
describe("--no-tools flag", () => {
|
||||
test("parses --no-tools flag", () => {
|
||||
const result = parseArgs(["--no-tools"]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue