mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
refactor(coding-agent): simplify project trust changes
This commit is contained in:
@@ -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"]);
|
||||
|
||||
Reference in New Issue
Block a user