refactor(coding-agent): simplify project trust changes

This commit is contained in:
Armin Ronacher
2026-06-03 14:25:07 +02:00
parent faa794a8c9
commit 37f160cab6
7 changed files with 52 additions and 177 deletions
-12
View File
@@ -300,18 +300,6 @@ describe("parseArgs", () => {
});
});
describe("--force flag", () => {
test("parses --force flag", () => {
const result = parseArgs(["--force"]);
expect(result.force).toBe(true);
});
test("parses -f shorthand", () => {
const result = parseArgs(["-f"]);
expect(result.force).toBe(true);
});
});
describe("--offline flag", () => {
test("parses --offline flag", () => {
const result = parseArgs(["--offline"]);